12 lines
338 B
Nix
12 lines
338 B
Nix
{ pkgs, ... }: {
|
|
virtualisation.lxd.enable = true;
|
|
users.users.mae = {
|
|
extraGroups = [ "lxd" ];
|
|
};
|
|
|
|
virtualisation.libvirtd.enable = true;
|
|
virtualisation.waydroid.enable = true;
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
programs.dconf.enable = true;
|
|
environment.systemPackages = with pkgs; [ virt-manager ];
|
|
}
|