blob: 0bc88c97e3c341637de92dd2e96721a5821a9327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ config
, pkgs
, ...
}: {
virtualisation = {
libvirtd.enable = true;
waydroid.enable = true;
podman = {
enable = true;
dockerCompat = true;
};
};
environment.systemPackages = [ pkgs.distrobox pkgs.distrobox-tui ];
programs.virt-manager.enable = true;
#virtualisation.vmware.host.enable = true;
#virtualisation.virtualbox.host = {
# enable = true;
#};
users.users."${config.myUserName}".extraGroups = [ "libvirtd" ];
}
|