add grapejuice

This commit is contained in:
Sakooooo 2023-08-24 17:25:27 +03:00
parent fd049db7a8
commit c904531ebc
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 17 additions and 0 deletions

View file

@ -3,5 +3,6 @@
./steam
./lutris
./wine
./grapejuice
];
}

View file

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