Skip to content

Commit

Permalink
✨ for mio,yuuko
Browse files Browse the repository at this point in the history
  • Loading branch information
shelken committed Sep 27, 2024
1 parent 90fac00 commit 6257445
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions hosts/mio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ in {

tools.music.enable = true;
tools.image.enable = true;
tools.others.enable = true;

social.personal.enable = true;
};
Expand Down
1 change: 1 addition & 0 deletions hosts/yuuko/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ in {

tools.music.enable = true;
tools.image.enable = true;
tools.others.enable = true;

social.personal.enable = true;
};
Expand Down
25 changes: 25 additions & 0 deletions modules/darwin/apps/tools/others.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
lib,
mylib,
config,
...
}: let
inherit (lib) mkIf;
inherit (mylib) mkBoolOpt;
cfg = config.shelken.tools.others;
in {
options.shelken.tools.others = {
enable = mkBoolOpt false "Whether or not to enable.";
};

config = mkIf cfg.enable {
homebrew = {
casks = [
"altserver"

"bbackupp"
"wezterm"
];
};
};
}

0 comments on commit 6257445

Please sign in to comment.