forked from extern/nix-config
864ed55261
This was my attempt at using Podman on NixOS. Although it worked and was cool, Podman actually breaks audio for QEMU VMs and results in an error message that returns 0 hits on search engines.
12 lines
213 B
Nix
12 lines
213 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.docker.enableOnBoot = false;
|
|
virtualisation.podman.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|