NixOS/home/programs/easyeffects.nix

13 lines
172 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.profile.programs.easyeffects;
in
{
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ easyeffects ]; };
}