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

17 lines
304 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 {
users.users.sako.packages = with pkgs; [
grapejuice
2023-08-24 18:25:27 +04:00
];
};
}