aboutsummaryrefslogtreecommitdiffstats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
Diffstat (limited to 'flake/nixosConfigurations')
-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];
};
}