mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
17 lines
323 B
Nix
17 lines
323 B
Nix
{ pkgs, ... }:
|
|
{
|
|
virtualisation = {
|
|
spiceUSBRedirection.enable = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
package = pkgs.qemu_kvm;
|
|
};
|
|
podman = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [ podman-compose ];
|
|
}
|