ooknet/home/modules/desktop/creative/audacity.nix

13 lines
181 B
Nix

{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = config.ooknet.creative.audacity;
in {
config = mkIf cfg.enable {
home.packages = [pkgs.audacity];
};
}