summaryrefslogtreecommitdiff
path: root/hosts/dspace/hardware-configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/dspace/hardware-configuration.nix')
-rw-r--r--hosts/dspace/hardware-configuration.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/hosts/dspace/hardware-configuration.nix b/hosts/dspace/hardware-configuration.nix
deleted file mode 100644
index aaad3b7..0000000
--- a/hosts/dspace/hardware-configuration.nix
+++ /dev/null
@@ -1,34 +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";
- };
- };
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
-}