From 7e300df6fafe005050c30787cb6a468b14544b2d Mon Sep 17 00:00:00 2001 From: k3t Date: Thu, 6 Aug 2026 23:56:57 -0600 Subject: [PATCH] update hardware-configuration.nix --- hosts/laptop/hardware-configuration.nix | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index fc8e8ae..c3750c6 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -8,28 +8,10 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - fileSystems."/" = - { device = "/dev/disk/by-label/NixOS"; - fsType = "btrfs"; - options = [ "subvol=@" ]; - }; - - fileSystems."/home" = - { device = "/dev/disk/by-label/NixOS"; - fsType = "btrfs"; - options = [ "subvol=@home" ]; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/E0C2-A3A3"; - fsType = "vfat"; - options = [ "fmask=0077" "dmask=0077" ]; - }; - #swapDevices = # [ { device = "/dev/disk/by-uuid/fe32f9af-3382-4505-90e3-aaf1c41bf5d4"; } # ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }