From 502cbcd6138b7c78dabd7fd6d9f155eefc3d917b Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Wed, 28 Jan 2026 20:19:44 +0100 Subject: [PATCH] allow unfree --- hosts/dnsc-machine/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/dnsc-machine/default.nix b/hosts/dnsc-machine/default.nix index 58e5740..82ce202 100644 --- a/hosts/dnsc-machine/default.nix +++ b/hosts/dnsc-machine/default.nix @@ -35,7 +35,6 @@ }; }) ]; - nixpkgs.config.allowUnfree = true; # General settings networking.hostName = "dnsc-machine"; @@ -76,5 +75,7 @@ services.openssh.enable = true; services.udisks2.enable = true; + nixpkgs.config.allowUnfree = true; + system.stateVersion = "25.05"; }