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

17 lines
277 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 17:30:43 +00:00
fuse-overlayfs
2023-02-05 13:36:38 +00:00
];
};
}