Compare commits
2 commits
2f471d2250
...
a3ce393c04
Author | SHA1 | Date | |
---|---|---|---|
a3ce393c04 | |||
14bc449701 |
3 changed files with 41 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/darwin/programs/wireguard/default.nix
Normal file
20
modules/darwin/programs/wireguard/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
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