mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-17 02:00:50 +01:00
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
|
|
];
|
|
}
|