aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.nix4
-rw-r--r--hosts/arrakis/services.nix3
2 files changed, 3 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index f7f9a66..c997694 100644
--- a/flake.nix
+++ b/flake.nix
@@ -293,8 +293,8 @@
root.openssh.authorizedKeys.keys = [ (builtins.readFile ./hosts/common/users/nipsy/keys/id_arrakis.pub) ];
};
})
+ { nixpkgs.hostPlatform = "x86_64-linux"; }
];
- system = "x86_64-linux";
};
kaitain = nixpkgs.lib.nixosSystem rec {
@@ -350,8 +350,8 @@
root.openssh.authorizedKeys.keys = [ (builtins.readFile ./hosts/common/users/nipsy/keys/id_arrakis.pub) ];
};
})
+ { nixpkgs.hostPlatform = "x86_64-linux"; }
];
- system = "x86_64-linux";
};
richese = nixpkgs.lib.nixosSystem rec {
diff --git a/hosts/arrakis/services.nix b/hosts/arrakis/services.nix
index 57542d9..d758d34 100644
--- a/hosts/arrakis/services.nix
+++ b/hosts/arrakis/services.nix
@@ -85,8 +85,6 @@
nginx = let
sys = lib.nixosSystem {
- system = "x86_64-linux";
-
modules = [
({ config, pkgs, lib, modulesPath, ... }: {
imports = [
@@ -119,6 +117,7 @@
};
};
})
+ { nixpkgs.hostPlatform = "x86_64-linux"; }
];
};