From 9ffbf37ca6b8cda5788b640cb7a9f56cd9352e9d Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 28 Jun 2024 15:50:00 -0500 Subject: [PATCH] Fix rascal --- flake.nix | 1 + nixos/rascal.nix | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 495b8a2..e763b78 100644 --- a/flake.nix +++ b/flake.nix @@ -2946,6 +2946,7 @@ system = "x86_64-linux"; modules = with nixosModules; [ + hardware.nixosModules.common-cpu-amd common ./nixos/rascal.nix { diff --git a/nixos/rascal.nix b/nixos/rascal.nix index 31eb9bc..69ac0e3 100644 --- a/nixos/rascal.nix +++ b/nixos/rascal.nix @@ -1,11 +1,9 @@ { - inputs, config, modulesPath, ... }: { imports = [ - inputs.hardware.nixosModules.common-cpu-amd (modulesPath + "/installer/scan/not-detected.nix") ]; @@ -62,5 +60,5 @@ }; }; - system.stateVersion = "22.05"; + system.stateVersion = "24.05"; }