From 222a640c4b04128c1fc2228de26247a5f5b7945b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Thu, 1 Jan 2026 21:59:39 +0100 Subject: [PATCH] Edited flake to use podman dir instead of docker --- templates/nix-config/flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/nix-config/flake.nix b/templates/nix-config/flake.nix index b4404cd..56ddb68 100644 --- a/templates/nix-config/flake.nix +++ b/templates/nix-config/flake.nix @@ -21,9 +21,9 @@ config.allowUnfree = true; }; - # Helper: collect every *.nix file inside ./docker as a list - dockerModules = let - dir = ../docker; + # Helper: collect every *.nix file inside ./podman as a list + podmanModules = let + dir = ../podman; entries = builtins.readDir dir; names = builtins.attrNames entries; nixNames = builtins.filter (n: builtins.match ".*\\.nix" n != null) names; @@ -43,8 +43,8 @@ # Core host configuration ./configuration.nix ./hardware-configuration.nix - # Docker services – automatically added from ./docker/*.nix - ] ++ dockerModules; + # Podman services – automatically added from ./podman/*.nix + ] ++ podmanModules; }; }; };