diff options
Diffstat (limited to 'configuration/core/users.nix')
-rw-r--r-- | configuration/core/users.nix | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configuration/core/users.nix b/configuration/core/users.nix index 26703a0..22f9e61 100644 --- a/configuration/core/users.nix +++ b/configuration/core/users.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, inputs, ... }: { programs.zsh.enable = true; @@ -28,4 +28,19 @@ LC_TELEPHONE = "nl_NL.UTF-8"; LC_TIME = "nl_NL.UTF-8"; }; + + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.extraSpecialArgs = { inherit inputs; }; + home-manager.users.jras = { + imports = [ ../home-manager/core ]; + + home.username = "jras"; + home.homeDirectory = "/home/jras"; + + programs.git = { + userName = "Jasper Ras"; + userEmail = "jaspert.ras@gmail.com"; + }; + }; } |