summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 8845576..873e8ec 100644
--- a/flake.nix
+++ b/flake.nix
@@ -48,8 +48,7 @@
nixosConfigurations.core = extraModules: nixpkgs.lib.nixosSystem {
inherit lib system;
specialArgs = {inherit inputs;};
- modules = [
- extraModules
+ modules = extraModules ++ [
({config, ... }: {
nixpkgs.overlays = with lib; [(composeManyExtensions [
(import ./overlays/vimPlugins.nix {inherit pkgs;})