nixdots/home/packages/gui/nomacs.nix
2024-06-21 11:38:10 +02:00

17 lines
216 B
Nix

{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.nomacs;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
nomacs
];
};
}