From 1e39a5a20349f7215f282022a06530fdbc5e7602 Mon Sep 17 00:00:00 2001 From: joshashtondev Date: Tue, 4 Aug 2026 21:56:04 -0600 Subject: [PATCH] =?UTF-8?q?nixos:=20gen=209=20@=20lavender=20=E2=80=94=202?= =?UTF-8?q?026-08-04=2021:56=2026.05.20260724.597283a=20(Yarara)=20-----?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/lavender/hardware.nix | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/hosts/lavender/hardware.nix b/hosts/lavender/hardware.nix index 188dd26..432e8f9 100644 --- a/hosts/lavender/hardware.nix +++ b/hosts/lavender/hardware.nix @@ -13,20 +13,24 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/2fc352b4-3b86-4282-9eb8-0bcaf6d48cd1"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/2fc352b4-3b86-4282-9eb8-0bcaf6d48cd1"; + fsType = "ext4"; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/0CB6-7449"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/0CB6-7449"; + fsType = "vfat"; + options = [ "fmask=0022" "dmask=0022" ]; + }; - swapDevices = - [ { device = "/dev/disk/by-uuid/8f8fdc73-d963-4665-b7e4-28eb43958ebe"; } - ]; + fileSystems."/games" = { + device = "/dev/disk/by-uuid/35b81a4f-c392-49b2-89a6-0a4c1820b1d8"; + fsType = "ext4"; + options = [ "defaults" "nofail" ]; + }; + + swapDevices = [ { device = "/dev/disk/by-uuid/8f8fdc73-d963-4665-b7e4-28eb43958ebe"; } ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;