From a5cd3b6dc927069326da8e960e259352d5bf90f9 Mon Sep 17 00:00:00 2001 From: Jessica Canady Date: Sat, 24 Jun 2023 23:39:50 -0400 Subject: [PATCH] System stateVersion --- flake.nix | 1 - hosts/hornt.nix | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c13f2da..5c26af3 100644 --- a/flake.nix +++ b/flake.nix @@ -11,7 +11,6 @@ nixosConfigurations = { hornt = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - stateVersion = "23.05"; modules = [ nixos-hardware.nixosModules.framework-12th-gen-intel diff --git a/hosts/hornt.nix b/hosts/hornt.nix index fb1f73a..71bde36 100644 --- a/hosts/hornt.nix +++ b/hosts/hornt.nix @@ -5,6 +5,11 @@ ./hornt-hardware.nix ]; + system.stateVersion = "23.05"; + nix.extraOptions = " + experimental-features = nix-command flakes + "; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;