diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 13:37:01 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:50 -0700 |
| commit | 4b2050f8762b2880277c0762efc925991a034892 (patch) | |
| tree | e42c7cc9c5ea16286e9a530eae81affb37ecbaf3 /snowfall/systems/x86_64-linux/c-pc/hardware.nix | |
| parent | 9fc3fa747782ae4d0d4875616a20f38580afb2a7 (diff) | |
migration: housekeeping
Diffstat (limited to 'snowfall/systems/x86_64-linux/c-pc/hardware.nix')
| -rw-r--r-- | snowfall/systems/x86_64-linux/c-pc/hardware.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/snowfall/systems/x86_64-linux/c-pc/hardware.nix b/snowfall/systems/x86_64-linux/c-pc/hardware.nix index d60d964..8f7f8cd 100644 --- a/snowfall/systems/x86_64-linux/c-pc/hardware.nix +++ b/snowfall/systems/x86_64-linux/c-pc/hardware.nix @@ -1,10 +1,6 @@ { config, lib, pkgs, modulesPath, ... }: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; - boot = { loader.grub = { enable = true; @@ -55,6 +51,8 @@ swapDevices = [ ]; - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.enableRedistributableFirmware = true; + hardware.cpu.amd.updateMicrocode = true; + + nixpkgs.hostPlatform = "x86_64-linux"; } |