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

View file

@ -17,6 +17,7 @@
./modules/hyprland.nix ./modules/hyprland.nix
./modules/applications.nix ./modules/applications.nix
./modules/firefox.nix ./modules/firefox.nix
./modules/games.nix
./hosts/pluto/conf.nix ./hosts/pluto/conf.nix
./hosts/pluto/hardware-configuration.nix ./hosts/pluto/hardware-configuration.nix

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

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