From a52e1b39a052ae19bae8eb2c2140f9e4d36c9efa Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Sun, 15 Sep 2024 07:08:05 +0700 Subject: [PATCH] :truck: get rid of modules/default.nix in verify flake module --- nix/verify/default.nix | 5 ++++- nix/verify/modules/default.nix | 8 -------- 2 files changed, 4 insertions(+), 9 deletions(-) delete mode 100644 nix/verify/modules/default.nix 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 - ]; - -}