summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Vink <mike1994vink@gmail.com>2023-11-20 10:52:54 +0000
committerMike Vink <mike1994vink@gmail.com>2023-11-20 10:52:54 +0000
commit19a3135810bc24448377114748a4eb65f59a8b36 (patch)
tree6e2d43620056b9c60afbd7a9495ffe8d17764d2f
parente648ed80fc7b951b649cfd75e7f990705205e8e4 (diff)
fixup
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d279774..d4e0d81 100644
--- a/flake.nix
+++ b/flake.nix
@@ -40,6 +40,7 @@
++ [({ config, ... }: {
nixpkgs.overlays = with lib; [(composeManyExtensions [
(import ./overlays/vimPlugins.nix {inherit pkgs;})
+ (import ./overlays/suckless.nix {inherit pkgs; home = config.ivi.home;})
])];})
];
};
@@ -49,7 +50,7 @@
nixosConfigurations = with lib;
(mapAttrs mkSystem (modulesIn ./machines)) // {
windows = modules:
- nixosSystem "wsl" ({...}: {
+ mkSystem "wsl" ({...}: {
imports = modules;
});
};