nixos-systems/modules/system/podman.nix
Eli Ribble 07d3b9d35e Make podman a separate module
We're going to hide more in there.
2025-07-18 15:46:21 +00:00

9 lines
228 B
Nix

{ config, configFiles, lib, pkgs, ... }:
with lib;
{
options.myModules.podman.enable = mkEnableOption "custom podman configuration";
config = mkIf config.myModules.podman.enable {
virtualisation.podman.enable = true;
};
}