feat(virtualisation): enable docker

This commit is contained in:
Infinidoge 2022-03-07 23:46:12 -05:00
parent 274b493973
commit f1f6d90655
2 changed files with 6 additions and 2 deletions

View file

@ -10,8 +10,11 @@ in
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
virtualisation.libvirtd.enable = true; virtualisation = {
libvirtd.enable = true;
docker.enable = true;
};
programs.dconf.enable = true; programs.dconf.enable = true;
environment.systemPackages = with pkgs; [ virt-manager ]; environment.systemPackages = with pkgs; [ virt-manager docker-compose docker-machine ];
}; };
} }

View file

@ -112,6 +112,7 @@ in
"bluetooth" "bluetooth"
"dialout" "dialout"
"disk" "disk"
"docker"
"libvirtd" "libvirtd"
"minecraft" "minecraft"
"wheel" "wheel"