From 121d7364f7427498e30961995f7ba2728d87a376 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 23 Sep 2025 20:49:01 +0200 Subject: [PATCH] Rename directory `flake` to `flake-parts` --- {flake => flake-parts}/dev-shell.nix | 0 {flake => flake-parts}/formatter.nix | 0 {flake => flake-parts}/hosts.nix | 0 {flake => flake-parts}/modules.nix | 0 {flake => flake-parts}/scripts.nix | 0 {flake => flake-parts}/sops.nix | 0 flake.nix | 12 ++++++------ 7 files changed, 6 insertions(+), 6 deletions(-) rename {flake => flake-parts}/dev-shell.nix (100%) rename {flake => flake-parts}/formatter.nix (100%) rename {flake => flake-parts}/hosts.nix (100%) rename {flake => flake-parts}/modules.nix (100%) rename {flake => flake-parts}/scripts.nix (100%) rename {flake => flake-parts}/sops.nix (100%) diff --git a/flake/dev-shell.nix b/flake-parts/dev-shell.nix similarity index 100% rename from flake/dev-shell.nix rename to flake-parts/dev-shell.nix diff --git a/flake/formatter.nix b/flake-parts/formatter.nix similarity index 100% rename from flake/formatter.nix rename to flake-parts/formatter.nix diff --git a/flake/hosts.nix b/flake-parts/hosts.nix similarity index 100% rename from flake/hosts.nix rename to flake-parts/hosts.nix diff --git a/flake/modules.nix b/flake-parts/modules.nix similarity index 100% rename from flake/modules.nix rename to flake-parts/modules.nix diff --git a/flake/scripts.nix b/flake-parts/scripts.nix similarity index 100% rename from flake/scripts.nix rename to flake-parts/scripts.nix diff --git a/flake/sops.nix b/flake-parts/sops.nix similarity index 100% rename from flake/sops.nix rename to flake-parts/sops.nix diff --git a/flake.nix b/flake.nix index ad6e717..310b1e9 100644 --- a/flake.nix +++ b/flake.nix @@ -67,12 +67,12 @@ systems = [ "x86_64-linux" ]; imports = [ - ./flake/dev-shell.nix - ./flake/formatter.nix - ./flake/hosts.nix - ./flake/modules.nix - ./flake/scripts.nix - ./flake/sops.nix + ./flake-parts/dev-shell.nix + ./flake-parts/formatter.nix + ./flake-parts/hosts.nix + ./flake-parts/modules.nix + ./flake-parts/scripts.nix + ./flake-parts/sops.nix ]; }; }