diff --git a/nix/verify/default.nix b/nix/verify/default.nix index 0d01c3c..156d415 100644 --- a/nix/verify/default.nix +++ b/nix/verify/default.nix @@ -3,7 +3,10 @@ imports = [ ]; flake.nixosModules.verify = { - imports = [ ./modules ]; + imports = [ + ./modules/closedPorts.nix + ./modules/localCommands.nix + ]; }; perSystem = diff --git a/nix/verify/modules/default.nix b/nix/verify/modules/default.nix deleted file mode 100644 index 3fd7831..0000000 --- a/nix/verify/modules/default.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ - - imports = [ - ./closedPorts.nix - ./localCommands.nix - ]; - -}