mirror of
https://github.com/nmasur/dotfiles
synced 2026-07-16 21:43:57 +00:00
add back staeam for macos
This commit is contained in:
@@ -12,9 +12,9 @@ rec {
|
|||||||
|
|
||||||
nmasur.profiles = {
|
nmasur.profiles = {
|
||||||
base.enable = true;
|
base.enable = true;
|
||||||
work.enable = true;
|
# work.enable = true;
|
||||||
extra.enable = true;
|
# extra.enable = true;
|
||||||
gaming.enable = true;
|
# gaming.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.users."Noah.Masur" = {
|
home-manager.users."Noah.Masur" = {
|
||||||
@@ -26,6 +26,7 @@ rec {
|
|||||||
nmasur.profiles = {
|
nmasur.profiles = {
|
||||||
common.enable = true;
|
common.enable = true;
|
||||||
darwin-base.enable = true;
|
darwin-base.enable = true;
|
||||||
|
darwin-gaming.enable = true;
|
||||||
power-user.enable = true;
|
power-user.enable = true;
|
||||||
work.enable = true;
|
work.enable = true;
|
||||||
experimental.enable = true;
|
experimental.enable = true;
|
||||||
|
|||||||
@@ -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
|
||||||
|
'';
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user