Add VMs vdev

This commit is contained in:
coolneng 2021-03-17 12:45:29 +01:00
parent 014d0eaee8
commit aace8e98c4
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 55 additions and 48 deletions

View File

@ -4,70 +4,77 @@
{ config, lib, pkgs, modulesPath, ... }: { config, lib, pkgs, modulesPath, ... }:
{ {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
[ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" =
device = "system/stateful/root"; { device = "system/stateful/root";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/nix" = { fileSystems."/nix" =
device = "system/ephemeral/nix"; { device = "system/ephemeral/nix";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/home" = { fileSystems."/tmp" =
device = "system/stateful/home"; { device = "system/ephemeral/tmp";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/tmp" = { fileSystems."/home" =
device = "system/ephemeral/tmp"; { device = "system/stateful/home";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/boot" = { fileSystems."/boot" =
device = "/dev/disk/by-uuid/B314-22E9"; { device = "/dev/disk/by-uuid/B314-22E9";
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/vault" = { fileSystems."/vault" =
device = "vault"; { device = "vault";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/vault/samba" = { fileSystems."/vault/backups" =
device = "vault/samba"; { device = "vault/backups";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/vault/nextcloud" = { fileSystems."/vault/sica" =
device = "vault/nextcloud"; { device = "vault/sica";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/vault/sica" = { fileSystems."/vault/nextcloud" =
device = "vault/sica"; { device = "vault/nextcloud";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/vault/backups" = { fileSystems."/vault/samba" =
device = "vault/backups"; { device = "vault/samba";
fsType = "zfs"; fsType = "zfs";
}; };
fileSystems."/vault/backups/databases" = { fileSystems."/vault/backups/databases" =
device = "vault/backups/databases"; { device = "vault/backups/databases";
fsType = "zfs";
};
fileSystems."/vault/VMs" =
{ device = "vault/VMs";
fsType = "zfs"; fsType = "zfs";
}; };
swapDevices = swapDevices =
[{ device = "/dev/disk/by-uuid/8262a243-b6aa-49e8-bf72-d2b85864d1c0"; }]; [ { device = "/dev/disk/by-uuid/8262a243-b6aa-49e8-bf72-d2b85864d1c0"; }
];
} }