NixOS/home/programs/easyeffects.nix

13 lines
172 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
2024-07-02 14:37:57 +07:00
let
cfg = config.profile.programs.easyeffects;
in
{
config = lib.mkIf cfg.enable { home.packages = with pkgs; [ easyeffects ]; };
2024-07-02 14:37:57 +07:00
}