diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-08 22:14:13 -0400 |
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-08 22:14:13 -0400 |
| commit | ae750d5cc7f39a69728051ff577fd0a5abb41049 (patch) | |
| tree | 2cc0e73b82a867d25417d137e23c726a16ee42db /machines/git/home.nix | |
| parent | 50f83e589ba6de2e17d42ae8f729a62344ee89a9 (diff) | |
add git vm
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"; +} |
