Install steam from brew on macos

This commit is contained in:
2026-09-06 01:40:04 +02:00
parent 7ed37b3b75
commit 129b9ae365
4 changed files with 51 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
{
options.lumpiastyHome.brew = lib.mkEnableOption "Homebrew integration via home-manager-brew";
config = lib.mkMerge [
(lib.mkIf config.lumpiastyHome.brew {
homebrew = {
enable = true;
brewInstall = true;
update = true;
upgrade = true;
cleanup = true;
casks = [
"steam"
];
};
})
(lib.mkIf (!config.lumpiastyHome.brew) {
homebrew.enable = lib.mkForce false;
})
];
}
+1
View File
@@ -9,6 +9,7 @@
./fhsBash.nix
./linux.nix
./macos.nix
./brew.nix
] ++ lib.optionals (osConfig.lumpiasty.enablePlasma) [
./plasma.nix
];