darwin: init games.nix

This commit is contained in:
Nico 2025-05-03 16:16:01 +10:00
parent 5a79b4d6db
commit 51f932d818
3 changed files with 18 additions and 2 deletions

17
modules/darwin/games.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
osu-lazer-bin
];
homebrew.casks = [
"whisky"
];
system.defaults.dock.persistent-apps = [
"/Applications/Whisky.app"
"${pkgs.osu-lazer-bin}/Applications/osu!"
];
}