From 29839e9f5b06fb3565163a1ac69a7a851cd5c1a7 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 1 Aug 2025 13:18:13 +0200 Subject: [PATCH] chore: comment out things from `hardware-configuration.nix` as those are no longer valid --- hosts/hazel/hardware-configuration.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/hosts/hazel/hardware-configuration.nix b/hosts/hazel/hardware-configuration.nix index 37b1ec9..a1d5101 100644 --- a/hosts/hazel/hardware-configuration.nix +++ b/hosts/hazel/hardware-configuration.nix @@ -24,21 +24,21 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = { - device = "/dev/disk/by-uuid/864dfbec-81f0-460f-b970-27693a0ad0e6"; - fsType = "ext4"; - }; + # fileSystems."/" = { + # device = "/dev/disk/by-uuid/864dfbec-81f0-460f-b970-27693a0ad0e6"; + # fsType = "ext4"; + # }; - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/E141-F5CE"; - fsType = "vfat"; - options = [ - "fmask=0077" - "dmask=0077" - ]; - }; + # fileSystems."/boot" = { + # device = "/dev/disk/by-uuid/E141-F5CE"; + # fsType = "vfat"; + # options = [ + # "fmask=0077" + # "dmask=0077" + # ]; + # }; - swapDevices = [ ]; + # swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;