desktop/game: init osu
This commit is contained in:
parent
26e3021ed1
commit
7e182c1b0f
2 changed files with 11 additions and 8 deletions
|
@ -1,10 +1,4 @@
|
|||
{
|
||||
imports = [
|
||||
./steam
|
||||
./lutris
|
||||
./wine
|
||||
./grapejuice
|
||||
./tetrio
|
||||
./prismlauncher
|
||||
];
|
||||
imports =
|
||||
[ ./steam ./lutris ./wine ./grapejuice ./tetrio ./prismlauncher ./osu ];
|
||||
}
|
||||
|
|
9
modules/desktop/game/osu/default.nix
Normal file
9
modules/desktop/game/osu/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue