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

16 lines
304 B
Nix

{ 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
];
};
}