2021-08-03 11:11:14 +02:00
|
|
|
{ pkgs, ... }: {
|
2022-03-10 23:37:29 +01:00
|
|
|
virtualisation.lxd.enable = true;
|
|
|
|
users.users.mae = {
|
|
|
|
extraGroups = [ "lxd" ];
|
|
|
|
};
|
|
|
|
|
2021-08-03 11:11:14 +02:00
|
|
|
virtualisation.libvirtd.enable = true;
|
2022-09-15 23:51:28 +02:00
|
|
|
virtualisation.waydroid.enable = true;
|
2021-08-15 00:45:49 +02:00
|
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
2021-08-03 11:11:14 +02:00
|
|
|
programs.dconf.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ virt-manager ];
|
|
|
|
}
|