From c7c0040db1f0bb1e27c352c836ada854b9ecda5b Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Thu, 26 Dec 2024 23:26:12 +0200 Subject: [PATCH] Avoid typing experimental nix-command and flakes (even tho it seems to work fine without this?) --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index f47c571..949ae21 100644 --- a/configuration.nix +++ b/configuration.nix @@ -39,5 +39,7 @@ flags = [ "--option" "tarball-ttl" "0" ]; # Required for polling below 1h }; + nix.settings.extra-experimental-features = [ "nix-command" "flakes" ]; + system.stateVersion = "24.05"; }