diff --git a/templates/nix-config/flake.nix b/templates/nix-config/flake.nix index 4fe1878..3091cb1 100644 --- a/templates/nix-config/flake.nix +++ b/templates/nix-config/flake.nix @@ -2,7 +2,7 @@ inputs = { # Core Nixpkgs nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; - # Disk‑partitioning helper + # Disk-partitioning helper disko.url = "github:nix-community/disko"; disko.inputs.nixpkgs.follows = "nixpkgs"; # Secrets handling @@ -34,7 +34,7 @@ inherit system; specialArgs = { inherit inputs; }; modules = [ - # Disk‑partitioning helper + # Disk-partitioning helper disko.nixosModules.disko # Secrets handling sops-nix.nixosModules.sops @@ -43,7 +43,7 @@ # Core host configuration ./configuration.nix ./hardware-configuration.nix - # Podman services – automatically added from ./podman/*.nix + # Podman services - automatically added from ./podman/*.nix ] ++ podmanModules; }; };