From ae750d5cc7f39a69728051ff577fd0a5abb41049 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Wed, 8 Oct 2025 22:14:13 -0400 Subject: add git vm --- machines/git/home.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 machines/git/home.nix (limited to 'machines/git/home.nix') 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"; +} -- cgit v1.2.3