2022-10-29 00:53:29 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
2020-11-17 01:51:13 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
virtualisation = {
|
|
|
|
lxd = {
|
|
|
|
enable = true;
|
|
|
|
recommendedSysctlSettings = true;
|
|
|
|
};
|
2020-12-13 06:57:45 +00:00
|
|
|
libvirtd = {
|
|
|
|
enable = true;
|
2021-11-02 01:15:54 +00:00
|
|
|
qemu.ovmf.enable = true;
|
2022-02-17 02:54:55 +00:00
|
|
|
qemu.swtpm.enable = true;
|
2021-11-02 01:15:54 +00:00
|
|
|
qemu.runAsRoot = false;
|
2020-12-13 06:57:45 +00:00
|
|
|
onBoot = "ignore";
|
|
|
|
onShutdown = "shutdown";
|
|
|
|
};
|
2020-11-17 01:51:13 +00:00
|
|
|
};
|
|
|
|
|
2022-10-29 00:53:29 +00:00
|
|
|
# no more cgroups v1
|
|
|
|
systemd.enableUnifiedCgroupHierarchy = lib.mkForce true;
|
|
|
|
|
2021-02-20 23:32:07 +00:00
|
|
|
# Breaks IPv4 on bridge
|
|
|
|
boot.kernel.sysctl."net.bridge.bridge-nf-call-iptables" = 0;
|
|
|
|
|
2020-12-13 06:57:45 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
virtmanager
|
2022-05-31 04:42:46 +00:00
|
|
|
spice-gtk
|
2021-08-25 04:54:22 +00:00
|
|
|
qemu
|
2020-12-13 06:57:45 +00:00
|
|
|
];
|
|
|
|
|
2020-11-17 01:51:13 +00:00
|
|
|
users.users = {
|
2022-11-04 01:13:11 +00:00
|
|
|
artemis.extraGroups = [ "lxd" "libvirtd" ];
|
2020-12-02 04:17:30 +00:00
|
|
|
lxd = {
|
2021-04-20 00:12:53 +00:00
|
|
|
isSystemUser = true;
|
2020-11-26 04:20:52 +00:00
|
|
|
subUidRanges = [{ startUid = 16777216; count = 16777216; } { startUid = config.users.users.artemis.uid; count = 1; }];
|
2020-12-02 04:17:30 +00:00
|
|
|
subGidRanges = [{ startGid = 16777216; count = 16777216; } { startGid = 100; count = 1; } { startGid = config.users.groups.artemis.gid; count = 1; }];
|
2021-09-18 17:09:49 +00:00
|
|
|
group = "lxd";
|
2020-11-17 01:51:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|