nixos/modules/desktop/game/grapejuice/default.nix

17 lines
313 B
Nix
Raw Normal View History

2023-08-24 18:25:27 +04:00
{ 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 {
2023-09-03 12:49:40 +04:00
# TODO update package
2023-08-24 18:25:27 +04:00
users.users.sako.packages = with pkgs; [
];
};
}