From 46ef39cd100bffc31e5f8cfba88c2a0931285736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Thu, 12 Feb 2026 10:06:01 +0100 Subject: [PATCH] Removed unicode characters --- templates/nix-config/flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }; };