diff options
Diffstat (limited to 'machines/git/home.nix')
| -rw-r--r-- | machines/git/home.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/machines/git/home.nix b/machines/git/home.nix new file mode 100644 index 0000000..82852c0 --- /dev/null +++ b/machines/git/home.nix @@ -0,0 +1,19 @@ +{ inputs, pkgs, ... }: + +{ + home = { + username = "compromyse"; + homeDirectory = "/home/compromyse"; + }; + + home.packages = with pkgs; [ + git-lfs + ]; + + imports = (map (path: ../../config/${path}) [ + "bash.nix" + "git" + ]); + + home.stateVersion = "23.11"; +} |
