1
Fork 0
nixos-system-config/systems/hardware/qemu-vm.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2023-06-24 20:56:54 +02:00
{lib, modulesPath, ... }:
2023-05-24 21:35:59 +02:00
{
2023-06-24 20:56:54 +02:00
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
2023-05-24 21:35:59 +02:00
2023-06-18 22:52:24 +02:00
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
2023-05-24 21:35:59 +02:00
boot.initrd.kernelModules = [ ];
2023-06-24 20:56:54 +02:00
boot.initrd.postDeviceCommands = lib.mkAfter ''
zfs rollback -r local/root@blank
'';
2023-05-24 21:35:59 +02:00
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
2023-06-24 20:56:54 +02:00
boot.zfs.devNodes = "/dev/disk/by-path";
fileSystems."/" = {
device = "local/root";
fsType = "zfs";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/1FD8-C4B8";
2023-05-24 21:35:59 +02:00
fsType = "vfat";
2023-06-24 20:56:54 +02:00
};
fileSystems."/nix" = {
device = "local/nix";
fsType = "zfs";
};
2023-05-24 21:35:59 +02:00
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
2023-06-18 22:52:24 +02:00
# networking.interfaces.enp1s0.useDHCP = lib.mkDefault true;
2023-05-24 21:35:59 +02:00
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}