fixup virt
This commit is contained in:
parent
75e9e63e51
commit
1d10ef75df
10 changed files with 15 additions and 18 deletions
31
hosts/common-vm.nix
Normal file
31
hosts/common-vm.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
boot = {}; # TODO: add kernel modules
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "ext4";
|
||||
options = [ "discard" "noatime" ];
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-label/BOOT";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" "discard" "noatime" ];
|
||||
};
|
||||
};
|
||||
|
||||
#swapDevices = [{ device = "/dev/disk/by-label/SWAP"; }];
|
||||
|
||||
networking = {
|
||||
domain = "k8s.xengi.de";
|
||||
defaultGateway6 = {
|
||||
address = "2a00:1328:e101:1300::1"; # TODO: use host network
|
||||
interface = "ens3"; # TODO: use correct interface name
|
||||
};
|
||||
};
|
||||
|
||||
virtualisation.qemu.guestAgent.enable = true;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue