feat(home): tea
This commit is contained in:
parent
2f471d2250
commit
14bc449701
2 changed files with 21 additions and 0 deletions
|
@ -35,6 +35,7 @@ in
|
|||
ripgrep = enabled;
|
||||
ssh = enabled;
|
||||
starship = enabled;
|
||||
tea = enabled;
|
||||
tmux = enabled;
|
||||
wezterm = enabled;
|
||||
wget = enabled;
|
||||
|
|
20
modules/home/programs/tea/default.nix
Normal file
20
modules/home/programs/tea/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue