Add podman
All checks were successful
/ check (push) Successful in 58s

This commit is contained in:
Oliver Davies 2025-08-18 20:20:08 +01:00
parent 77b8ce89c8
commit 8466ffcfb7

16
modules/podman.nix Normal file
View file

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