summary refs log tree commit diff
path: root/modules/users/Rory.nix
blob: fe51acce0da29cc99e78015c2e1fdeff6dc4efe3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ config, pkgs, home-manager, ... }:
{
  users.users.Rory = {
    isNormalUser = true;
    extraGroups = [ "wheel" ];
    packages = with pkgs; [
    ];
    initialPassword = "password";
    openssh.authorizedKeys.keys = [
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILF2IuNu//0DP/wKMuDvBgVT3YBS2uULsipbdrhJCTM7 Rory-desktop"
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN/kNkY/E5b6rvCQLMaSbpLQ/xoyywIwVVu9uo2j/B6p Rory@RoryNix"
    ];
  };

  home-manager.users.Rory = {
    programs.git = {
      enable = true;
      userName = "TheArcaneBrony";
      userEmail = "root@thearcanebrony.net";
      extraConfig = {
        safe = {
          directory = "/";
        };
      };
    };
    home.stateVersion = "22.11";
  };
}