add grapejuice
This commit is contained in:
parent
fd049db7a8
commit
c904531ebc
|
@ -3,5 +3,6 @@
|
||||||
./steam
|
./steam
|
||||||
./lutris
|
./lutris
|
||||||
./wine
|
./wine
|
||||||
|
./grapejuice
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/desktop/game/grapejuice/default.nix
Normal file
16
modules/desktop/game/grapejuice/default.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue