10 lines
170 B
Nix
10 lines
170 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let
|
||
|
cfg = config.profile.programs.easyeffects;
|
||
|
in
|
||
|
{
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
home.packages = with pkgs; [ easyeffects ];
|
||
|
};
|
||
|
}
|