diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-06 22:24:50 +0000 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2025-02-06 22:24:50 +0000 |
commit | 8a3a0c2cabba7186c8db4006c9867b32ef352b56 (patch) | |
tree | dfd7b7fd0b698ec1a5ee0417d11ada381136ce5e /configuration/core | |
parent | 3d5081b8ba0e31a152ea69458601597dce8ee2c8 (diff) |
braab
Diffstat (limited to 'configuration/core')
-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"; + }; + }; } |