diff options
Diffstat (limited to 'modules/home/christian.nix')
| -rw-r--r-- | modules/home/christian.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix new file mode 100644 index 0000000..461f273 --- /dev/null +++ b/modules/home/christian.nix @@ -0,0 +1,16 @@ +{ config, pkgs, inputs, ... }: +{ + imports = [ ./nvim ]; + + home.stateVersion = "25.11"; + + home.packages = with pkgs; [ ]; + + programs.git = { + enable = true; + settings.user.name = "Christian"; + settings.user.email = "[email protected]"; + }; + + programs.home-manager.enable = true; +} |
