nix: added game 'osu'

This commit is contained in:
Nico 2025-05-03 16:15:57 +10:00
parent 135f6d803b
commit 434bea3fc3
2 changed files with 8 additions and 0 deletions

7
nix/modules/games.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
osu-lazer
];
}