From 5cc86bff949076d498962e9b3af7a6d4fecbcf62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= Date: Wed, 19 Feb 2025 17:25:28 +0100 Subject: [PATCH] Move `makeInstaller` to `infra/` --- deployment/flake-part.nix | 2 +- {deployment => infra}/makeInstaller.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {deployment => infra}/makeInstaller.nix (100%) diff --git a/deployment/flake-part.nix b/deployment/flake-part.nix index 6baf7624..e58fc5fa 100644 --- a/deployment/flake-part.nix +++ b/deployment/flake-part.nix @@ -2,7 +2,7 @@ let allVmIds = builtins.genList (x: 100 + x) 156; # 100 -- 255 - makeInstaller = import ./makeInstaller.nix; + makeInstaller = import ../infra/makeInstaller.nix; in { diff --git a/deployment/makeInstaller.nix b/infra/makeInstaller.nix similarity index 100% rename from deployment/makeInstaller.nix rename to infra/makeInstaller.nix