23 lines
306 B
Nix
Raw Normal View History

2025-01-20 22:35:40 -05:00
{
config,
lib,
...
}:
let
cfg = config.nmasur.profiles.gaming;
in
{
options.nmasur.profiles.gaming.enable = lib.mkEnableOption "extra config for macOS";
config = lib.mkIf cfg.enable {
homebrew.casks = lib.mkDefault [
"keybase" # GUI on Nix not available for macOS
];
};
}