From 434bea3fc36c47b9528505753aee41aa27541756 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:15:57 +1000 Subject: [PATCH] nix: added game 'osu' --- nix/flake.nix | 1 + nix/modules/games.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 nix/modules/games.nix diff --git a/nix/flake.nix b/nix/flake.nix index 1b6245c..80985c7 100644 --- a/nix/flake.nix +++ b/nix/flake.nix @@ -17,6 +17,7 @@ ./modules/hyprland.nix ./modules/applications.nix ./modules/firefox.nix + ./modules/games.nix ./hosts/pluto/conf.nix ./hosts/pluto/hardware-configuration.nix diff --git a/nix/modules/games.nix b/nix/modules/games.nix new file mode 100644 index 0000000..753066f --- /dev/null +++ b/nix/modules/games.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + osu-lazer + ]; +}