From b0dd468c51be16d470c1c1d023597ef03cfe9753 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Fri, 25 Apr 2025 12:20:40 -0400 Subject: [PATCH] Rearrange a bit --- hosts/default/configuration.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 63e19f6..829a548 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -48,6 +48,8 @@ fsType = "ext4"; }; + # Add flakes + nix.settings.experimental-features = [ "nix-command" "flakes" ]; boot.loader.systemd-boot.memtest86.enable = true; # Temporarily pin to 6.12 to fix llvm/rocm build @@ -71,8 +73,6 @@ ]; services.fwupd.enable = true; services.hardware.openrgb.enable = true; - # Add flakes - nix.settings.experimental-features = [ "nix-command" "flakes" ]; # Feel like I should be sure this is safe w/flakes first: #system.autoUpgrade.enable = true; @@ -467,6 +467,5 @@ # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). system.stateVersion = "24.05"; # Did you read the comment? - }