desktop/game: init osu

This commit is contained in:
Sakooooo 2024-10-03 08:44:56 +04:00
parent 26e3021ed1
commit 7e182c1b0f
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 11 additions and 8 deletions

View file

@ -1,10 +1,4 @@
{
imports = [
./steam
./lutris
./wine
./grapejuice
./tetrio
./prismlauncher
];
imports =
[ ./steam ./lutris ./wine ./grapejuice ./tetrio ./prismlauncher ./osu ];
}

View file

@ -0,0 +1,9 @@
{ outputs, options, config, lib, pkgs, ... }:
let cfg = config.modules.desktop.game.osu;
in {
options.modules.desktop.game.osu = { enable = lib.mkEnableOption false; };
config = lib.mkIf cfg.enable {
users.users.sako.packages = with pkgs; [ osu-lazer-bin ];
};
}