Compare commits

...

2 commits

Author SHA1 Message Date
a3ce393c04
feat(darwin): Wireguard 2025-01-25 08:55:33 -08:00
14bc449701
feat(home): tea 2025-01-25 08:55:33 -08:00
3 changed files with 41 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.wireguard;
in
{
options.marleyos.programs.wireguard.enable = mkEnableOption "wireguard";
config = mkIf cfg.enable {
homebrew.masApps = {
"WireGuard" = 1451685025;
};
};
}

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
];
};
}