diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 15:50:59 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 22:55:02 +0530 |
commit | 5db58cfe0eba71660c96639ee2c3f915023213f1 (patch) | |
tree | ef5630d74b909e1a0d865a7c4593e776658a409b /os/dspace/hardware-configuration.nix | |
parent | e112181c35f3ad6d9469448d487bee668dd19b0b (diff) |
dspace: drop
Diffstat (limited to 'os/dspace/hardware-configuration.nix')
-rw-r--r-- | os/dspace/hardware-configuration.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/os/dspace/hardware-configuration.nix b/os/dspace/hardware-configuration.nix deleted file mode 100644 index 7a8d7b2..0000000 --- a/os/dspace/hardware-configuration.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ lib, modulesPath, ... }: - -{ - imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; - - boot = { - loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; - }; - - initrd.availableKernelModules = [ - "ata_piix" - "uhci_hcd" - "virtio_pci" - "virtio_scsi" - "sd_mod" - "sr_mod" - ]; - }; - - fileSystems = { - "/" = { - device = "/dev/disk/by-uuid/c5b1077e-52e8-4249-8bd7-d53eafa41f5a"; - fsType = "ext4"; - }; - "/boot" = { - device = "/dev/disk/by-uuid/9787-FFFE"; - fsType = "vfat"; - }; - }; -} |