castle: added easy effects
This commit is contained in:
parent
453c8deb4d
commit
bfc8bb01c4
|
@ -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 = {
|
||||
|
|
9
home/programs/easyeffects.nix
Normal file
9
home/programs/easyeffects.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -82,6 +82,7 @@
|
|||
type = lib.types.bool;
|
||||
default = true;
|
||||
};
|
||||
easyeffects.enable = lib.mkEnableOption "easyeffects";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -80,5 +80,6 @@ in
|
|||
home.programs = {
|
||||
zathura.enable = true;
|
||||
};
|
||||
programs.easyeffects.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue