From 8a3a0c2cabba7186c8db4006c9867b32ef352b56 Mon Sep 17 00:00:00 2001 From: Jasper Ras Date: Thu, 6 Feb 2025 22:24:50 +0000 Subject: braab --- configuration/core/users.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'configuration/core/users.nix') 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"; + }; + }; } -- cgit v1.2.3