sneeuwvlok/modules/home/game/minescraft.nix
2026-03-30 09:09:01 +02:00

19 lines
313 B
Nix

{
inputs,
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.sneeuwvlok.game.minecraft;
in {
options.sneeuwvlok.game.minecraft = {
enable = mkEnableOption "enable minecraft";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [prismlauncher];
};
}