summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-07-14 17:53:13 -0600
committerAlejandro Soto <alejandro@34project.org>2024-07-15 09:34:00 -0600
commit02abf4ed0131237c25e0a10db50fa4c41a902a50 (patch)
tree20904894fc0952806e341cdaff5941e81b3ce51c /flake.nix
parent08e746700341dda3e3bdf704332fc3c07053d3e7 (diff)
sys: final merge of dmz, hv into sys
Diffstat (limited to '')
-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