This repository has been archived on 2025-03-05. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
269 B
Nix

{ 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; [
podman
];
};
}