nix-config/modules/podman.nix
Oliver Davies 8466ffcfb7
All checks were successful
/ check (push) Successful in 58s
Add podman
2025-08-18 20:20:08 +01:00

16 lines
287 B
Nix

{ config, ... }:
{
flake.modules.nixos.pc = {
virtualisation = {
oci-containers.backend = "podman";
podman = {
enable = true;
dockerCompat = true;
};
};
users.users.${config.flake.meta.owner.username}.extraGroups = [ "podman" ];
};
}