feat(home): tea

This commit is contained in:
punkfairie 2024-12-22 21:23:21 -08:00
parent 2f471d2250
commit 14bc449701
Signed by: punkfairie
GPG key ID: 8CEDBFDF5C0D613D
2 changed files with 21 additions and 0 deletions

View file

@ -35,6 +35,7 @@ in
ripgrep = enabled;
ssh = enabled;
starship = enabled;
tea = enabled;
tmux = enabled;
wezterm = enabled;
wget = enabled;

View file

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