summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-10-08 22:14:13 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-10-08 22:14:13 -0400
commitae750d5cc7f39a69728051ff577fd0a5abb41049 (patch)
tree2cc0e73b82a867d25417d137e23c726a16ee42db /flake.nix
parent50f83e589ba6de2e17d42ae8f729a62344ee89a9 (diff)
add git vm
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 6dc888d..b982f4e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -49,6 +49,19 @@
];
};
+ git = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ specialArgs = { inherit inputs; };
+ modules = [
+ inputs.disko.nixosModules.default
+
+ ./machines/git/configuration.nix
+
+ inputs.home-manager.nixosModules.default
+ inputs.impermanence.nixosModules.impermanence
+ ];
+ };
+
};
};
}