dots/modules/darwin/games.nix
Nico 5e8fdf436d chore: cleanup modules
system-specific modules such as darwin/games will now automatically
import games.nix

removes alot of duplication
2025-05-03 16:34:35 +10:00

19 lines
386 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ../games.nix ];
homebrew.casks = [
"whisky"
"steam"
"gog-galaxy"
];
system.defaults.dock.persistent-apps = [
"/Applications/Steam.app"
"/Applications/GOG Galaxy.app"
"/Applications/Whisky.app"
"${pkgs.prismlauncher}/Applications/PrismLauncher.app"
"${pkgs.osu-lazer-bin}/Applications/osu!.app"
];
}