From f3fdaccb9a491895205ed361b1364700e51591f5 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Fri, 20 Oct 2023 16:49:33 +0300 Subject: [PATCH] BChange hardware conf --- machines/asus/hardware.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/machines/asus/hardware.nix b/machines/asus/hardware.nix index d47d823..a37a515 100644 --- a/machines/asus/hardware.nix +++ b/machines/asus/hardware.nix @@ -5,36 +5,31 @@ systemConfiguration { boot.initrd.availableKernelModules = [ "ahci" + "rtsx_pci_sdmmc" "sd_mod" "sr_mod" - "usb_storage" "usbhid" "xhci_pci" ]; - boot.kernelModules = [ - "kvm-intel" - ]; - boot.loader = { systemd-boot = enabled {}; efi.canTouchEfiVariables = true; - efi.efiSysMountPoint = "/boot/efi"; }; fileSystems."/" = { - device = "/dev/disk/by-uuid/d0e4626c-507e-484a-9ecc-94817d889083"; + device = ""; fsType = "ext4"; }; - fileSystems."/boot/efi" = { - device = "/dev/disk/by-uuid/A467-98D1"; + fileSystems."/boot" = { + device = ""; fsType = "vfat"; }; swapDevices = [ { - device = "/dev/disk/by-uuid/10bfe7d8-1daf-4c65-a5a6-cf3c9a085478"; + device = ""; } ]; }