summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-11-20 10:44:24 +0000
committerMike Vink <mike1994vink@gmail.com>2023-11-20 10:44:24 +0000
commit05908da2c997aa6408b9e4926941406868102176 (patch)
treeb98406699b9c17993d62ff0444c5357258bdeaff
parent0aa34e11a595b46a7ae6c37e294836ed8194da48 (diff)
fixup
-rw-r--r--flake.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index f6c1b0c..c90e025 100644
--- a/flake.nix
+++ b/flake.nix
@@ -48,12 +48,12 @@
in with lib; {
inherit lib;
nixosConfigurations = with lib;
- mapAttrs mkSystem (modulesIn ./machines);
-
- nixosConfigurations.windows = modules:
- nixosSystem "wsl" ({...}: {
- imports = modules;
- });
+ mapAttrs mkSystem (modulesIn ./machines) // {
+ windows = modules:
+ nixosSystem "wsl" ({...}: {
+ imports = modules;
+ })
+ };
deploy.nodes =
mapAttrs