feat: jqp

This commit is contained in:
punkfairie 2025-04-06 11:36:46 -07:00
parent da60df353f
commit 2c803d9685
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 17 additions and 0 deletions

View file

@ -14,6 +14,7 @@ in {
amfora = enabled;
btop = enabled;
cava = enabled;
jqp = enabled;
lazygit = enabled;
ncmpcpp = enabled;
neovim = enabled;

View file

@ -0,0 +1,16 @@
{
lib,
config,
pkgs,
...
}: let
cfg = config.marleyos.programs.jqp;
in {
options.marleyos.programs.jqp.enable = lib.mkEnableOption "jqp";
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
jqp
];
};
}