castle: added easy effects
This commit is contained in:
parent
453c8deb4d
commit
bfc8bb01c4
|
@ -5,6 +5,7 @@
|
||||||
./chromium.nix
|
./chromium.nix
|
||||||
./dbeaver.nix
|
./dbeaver.nix
|
||||||
./discord.nix
|
./discord.nix
|
||||||
|
./easyeffects.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./github.nix
|
./github.nix
|
||||||
./go.nix
|
./go.nix
|
||||||
|
@ -23,8 +24,8 @@
|
||||||
./variety.nix
|
./variety.nix
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
./whatsapp.nix
|
./whatsapp.nix
|
||||||
./zsh.nix
|
|
||||||
./zathura.nix
|
./zathura.nix
|
||||||
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.fzf = {
|
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;
|
type = lib.types.bool;
|
||||||
default = true;
|
default = true;
|
||||||
};
|
};
|
||||||
|
easyeffects.enable = lib.mkEnableOption "easyeffects";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,5 +80,6 @@ in
|
||||||
home.programs = {
|
home.programs = {
|
||||||
zathura.enable = true;
|
zathura.enable = true;
|
||||||
};
|
};
|
||||||
|
programs.easyeffects.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue