mirror of
https://github.com/nmasur/dotfiles
synced 2026-07-16 22:53:57 +00:00
25 lines
406 B
Nix
25 lines
406 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.darwin-gaming;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.darwin-gaming.enable = lib.mkEnableOption "gaming config for macOS";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
home.file.".Brewfile".text = /* homebrew */ ''
|
|
# Casks (GUI Apps)
|
|
cask "steam" # Not packaged for Nix on macOS
|
|
cask "epic-games" # Not packaged for Nix
|
|
'';
|
|
|
|
};
|
|
}
|