From 5862c7cb29d6065b57b298bf8538025940d6a296 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Mon, 6 Jul 2026 18:07:31 -0600 Subject: [PATCH] add back staeam for macos --- hosts/aarch64-darwin/lookingglass/default.nix | 7 +++--- .../modules/nmasur/profiles/darwin-gaming.nix | 24 +++++++++++++++++++ 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 platforms/home-manager/modules/nmasur/profiles/darwin-gaming.nix diff --git a/hosts/aarch64-darwin/lookingglass/default.nix b/hosts/aarch64-darwin/lookingglass/default.nix index 084f22cb..e9e41b2f 100644 --- a/hosts/aarch64-darwin/lookingglass/default.nix +++ b/hosts/aarch64-darwin/lookingglass/default.nix @@ -12,9 +12,9 @@ rec { nmasur.profiles = { base.enable = true; - work.enable = true; - extra.enable = true; - gaming.enable = true; + # work.enable = true; + # extra.enable = true; + # gaming.enable = true; }; home-manager.users."Noah.Masur" = { @@ -26,6 +26,7 @@ rec { nmasur.profiles = { common.enable = true; darwin-base.enable = true; + darwin-gaming.enable = true; power-user.enable = true; work.enable = true; experimental.enable = true; diff --git a/platforms/home-manager/modules/nmasur/profiles/darwin-gaming.nix b/platforms/home-manager/modules/nmasur/profiles/darwin-gaming.nix new file mode 100644 index 00000000..8b271b8d --- /dev/null +++ b/platforms/home-manager/modules/nmasur/profiles/darwin-gaming.nix @@ -0,0 +1,24 @@ +{ + 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 + ''; + + }; +}