nix-configurations/home/features/virtualization/podman.nix

17 lines
270 B
Nix
Raw Normal View History

2023-02-05 13:36:38 +00:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.virtualization.podman;
in {
options.features.virtualization.podman.enable = mkEnableOption "install podman";
config = mkIf cfg.enable {
home.packages = with pkgs; [
2023-04-12 08:25:36 +00:00
#podman
2023-02-05 13:36:38 +00:00
];
};
}