mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 16:52:02 +00:00
23 lines
306 B
Nix
23 lines
306 B
Nix
{
|
|
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
|
|
];
|
|
|
|
};
|
|
}
|