Files
nixos/modules/nixos/podman.nix
T

22 lines
328 B
Nix
Raw Normal View History

2025-05-14 21:19:49 -05:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.greg.podman;
in
{
options.greg.podman.enable = lib.mkEnableOption "Enable podman in NixOS with my updates";
config.virtualisation.podman = lib.mkIf cfg.enable {
enable = true;
dockerCompat = true;
extraPackages = [
pkgs.podman-compose
];
};
}