10 lines
228 B
Nix
10 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;
|
||
|
|
};
|
||
|
|
}
|