1
0
forked from extern/nix-config
donovanglover-nix-config/modules/docker.nix
Donovan Glover 864ed55261
docker: Add podman
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.
2024-01-12 04:18:39 -05:00

12 lines
213 B
Nix

{ pkgs, ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker.enableOnBoot = false;
virtualisation.podman.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
];
}