castle: added easy effects

This commit is contained in:
Tigor Hutasuhut 2024-07-02 14:37:57 +07:00
parent 453c8deb4d
commit bfc8bb01c4
4 changed files with 13 additions and 1 deletions

View file

@ -5,6 +5,7 @@
./chromium.nix
./dbeaver.nix
./discord.nix
./easyeffects.nix
./git.nix
./github.nix
./go.nix
@ -23,8 +24,8 @@
./variety.nix
./vscode.nix
./whatsapp.nix
./zsh.nix
./zathura.nix
./zsh.nix
];
programs.fzf = {

View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
let
cfg = config.profile.programs.easyeffects;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ easyeffects ];
};
}

View file

@ -82,6 +82,7 @@
type = lib.types.bool;
default = true;
};
easyeffects.enable = lib.mkEnableOption "easyeffects";
};
};
}

View file

@ -80,5 +80,6 @@ in
home.programs = {
zathura.enable = true;
};
programs.easyeffects.enable = true;
};
}