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