diff options
Diffstat (limited to 'hosts/mox/hardware-configuration.nix')
-rw-r--r-- | hosts/mox/hardware-configuration.nix | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/hosts/mox/hardware-configuration.nix b/hosts/mox/hardware-configuration.nix deleted file mode 100644 index 3913e1e..0000000 --- a/hosts/mox/hardware-configuration.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ modulesPath, ... }: - -{ - imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - - boot.initrd.availableKernelModules = [ - "ata_piix" - "uhci_hcd" - "virtio_pci" - "virtio_scsi" - "sd_mod" - "sr_mod" - ]; - - fileSystems = { - "/" = { - device = "/dev/disk/by-uuid/547074b4-4d61-4968-a94f-4f97e1fa2c3c"; - fsType = "ext4"; - }; - "/boot" = { - device = "/dev/disk/by-uuid/C634-FE6A"; - fsType = "vfat"; - }; - }; -} |