porcorosso: add libvirt persistance

This commit is contained in:
Luke Granger-Brown 2020-11-04 17:09:53 +00:00
parent 86a09dab73
commit db911ee156

View file

@ -33,6 +33,9 @@ in {
];
boot.kernelModules = [ "kvm-intel" ];
boot.supportedFilesystems = [ "ntfs" ];
boot.kernel.sysctl = {
"abi.vsyscall32" = "0";
};
fileSystems = let
zfs = device: {
@ -191,7 +194,16 @@ in {
};
systemd.tmpfiles.rules = [
#"L /etc/nixos - - - - /persist/etc/nixos"
"d /var/lib/libvirt 0755 root - - -"
];
systemd.mounts = [{
bindsTo = ["libvirtd.service"];
partOf = ["libvirtd.service"];
unitConfig.RequiresMountsFor = "/var/lib/libvirt";
options = "bind";
what = "/persist/var/lib/libvirt";
where = "/var/lib/libvirt";
}];
# Enable Thunderbolt device management.
services.hardware.bolt.enable = true;