summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 2 insertions, 15 deletions
diff --git a/flake.nix b/flake.nix
index 8a25fb0..2c87557 100644
--- a/flake.nix
+++ b/flake.nix
@@ -81,10 +81,7 @@
nixosConfigurations =
let
nixosSystem = { modules }: makeOverridable nixpkgs.lib.nixosSystem {
- inherit pkgs system;
- modules = modules ++ [
- nixpkgs.nixosModules.notDetected
- ];
+ inherit modules pkgs system;
specialArgs = {
inherit flakes;
@@ -95,20 +92,10 @@
modules = [
./sys
host
- nixvirt.nixosModules.default
];
};
in
- mapAttrs (_: hostConfig) (importAll { root = ./sys/platform; })
- // {
- dmz = nixosSystem {
- modules = [ ./dmz ];
- };
-
- hv = nixosSystem {
- modules = [ ./hv ];
- };
- };
+ mapAttrs (_: hostConfig) (importAll { root = ./sys/platform; });
homeConfigurations =
let