From b727afdec2b3ffbf1bb91ecad52dc859dc34acc4 Mon Sep 17 00:00:00 2001 From: Tasia Iso Date: Thu, 3 Oct 2024 11:40:24 +0200 Subject: [PATCH] aezaez --- hosts/vulpecula/hardware-configuration.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/hosts/vulpecula/hardware-configuration.nix b/hosts/vulpecula/hardware-configuration.nix index 72a0081..c21b1ac 100644 --- a/hosts/vulpecula/hardware-configuration.nix +++ b/hosts/vulpecula/hardware-configuration.nix @@ -8,21 +8,16 @@ [ (modulesPath + "/profiles/qemu-guest.nix") ]; - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" "virtio_pci" "virtio_scsi" "sd_mod" ]; - boot.initrd.kernelModules = [ "nvme" ]; + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/c56e47f8-ae8e-4ffa-b721-7257295a90a6"; + { device = "/dev/disk/by-uuid/04f949ae-8538-412c-b570-81c0dea29d12"; fsType = "ext4"; }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/c69a328c-0416-48f5-ad1e-cd03e45fe1ab"; - fsType = "vfat"; - }; - swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -33,5 +28,4 @@ # networking.interfaces.ens18.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - boot.loader.grub.device = "/dev/sda"; -} \ No newline at end of file +}