From ab18a424182e95f2e7767184e2dc2358426157ca Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Wed, 18 Dec 2024 19:02:34 +0100 Subject: [PATCH] flake: remove uneeded directory for nodes --- flake.nix | 2 +- nodes/default.nix => nodes.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nodes/default.nix => nodes.nix (100%) diff --git a/flake.nix b/flake.nix index a52bc9f..01c9b3d 100644 --- a/flake.nix +++ b/flake.nix @@ -25,7 +25,7 @@ formatter = eachSystem (pkgs: treefmtEval.${pkgs.system}.config.build.wrapper); nixosConfigurations = import ./hosts {inherit inputs;}; packages = eachSystem (pkgs: import ./shared/pkgs {inherit inputs pkgs;}); - deploy.nodes = import ./nodes {inherit inputs;}; + deploy.nodes = import ./nodes.nix {inherit inputs;}; checks = builtins.mapAttrs (_: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib; }; inputs = { diff --git a/nodes/default.nix b/nodes.nix similarity index 100% rename from nodes/default.nix rename to nodes.nix