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 +}