about summary refs log tree commit diff stats
path: root/flake
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-04-10 14:51:58 +0200
committerSoispha <soispha@vhack.eu>2023-05-09 19:30:15 +0200
commit8fcbfbee350957ee8b6d3bcfc4a0287bc7976d32 (patch)
treee292d39acc59d2dffc6088626f427008e2d1cc26 /flake
parentFix(system/services/nix): Add nixpkgs to args (diff)
downloadnixos-config-8fcbfbee350957ee8b6d3bcfc4a0287bc7976d32.tar.gz
nixos-config-8fcbfbee350957ee8b6d3bcfc4a0287bc7976d32.zip
Fix(system/services/nix): Add templates to the args
Diffstat (limited to 'flake')
-rw-r--r--flake/nixosConfigurations/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix
index 2e0e01fd..360728e1 100644
--- a/flake/nixosConfigurations/default.nix
+++ b/flake/nixosConfigurations/default.nix
@@ -14,6 +14,7 @@
   user_js,
   neovim_config,
   snap-sync,
+  templates,
   # modules
   impermanence,
   home-manager,
@@ -65,11 +66,14 @@
     impermanence.nixosModules.impermanence
     impermanenceConfig
   ];
-  nixpkgs-as-input = nixpkgs;
+  defaultSpecialArgs = {
+    nixpkgs-as-input = nixpkgs;
+    inherit templates;
+  };
 in {
   tiamat = nixpkgs.lib.nixosSystem {
     inherit system pkgs;
-    specialArgs = {inherit nixpkgs-as-input;};
+    specialArgs = defaultSpecialArgs;
     modules =
       [
         ../../hosts/tiamat/configuration.nix
@@ -79,7 +83,7 @@ in {
 
   mammun = nixpkgs.lib.nixosSystem {
     inherit system pkgs;
-    specialArgs = {inherit nixpkgs-as-input;};
+    specialArgs = defaultSpecialArgs;
     modules =
       [
         ../../hosts/mammun/configuration.nix
@@ -88,7 +92,7 @@ in {
   };
   lahmu = nixpkgs.lib.nixosSystem {
     inherit system pkgs;
-    specialArgs = {inherit nixpkgs-as-input;};
+    specialArgs = defaultSpecialArgs;
     modules =
       [
         ../../hosts/lahmu/configuration.nix
@@ -96,7 +100,7 @@ in {
       ++ defaultModules;
   };
   spawn = nixpkgs.lib.nixosSystem {
-    specialArgs = {inherit nixpkgs-as-input;};
+    specialArgs = defaultSpecialArgs;
     modules = [../../hosts/spawn/configuration.nix];
   };
 }