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

View file

@ -9,7 +9,6 @@
"${pkgs.spotify}/Applications/Spotify.app"
"${pkgs.vesktop}/Applications/Vesktop.app"
"/Applications/Whisky.app"
"${pkgs.utm}/Applications/UTM.app"
"/Applications/Thunderbird.app"
@ -38,7 +37,6 @@
"firefox"
"thunderbird"
"ghostty"
"whisky"
"krita"
"obs"

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!"
];
}