nixos/home/minecraft/home.nix

10 lines
149 B
Nix
Raw Normal View History

2024-01-05 22:24:55 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.minecraft.enable {
2024-01-07 13:57:59 +08:00
home.packages = with pkgs; [
prismlauncher
jdk8
];
2024-01-05 22:24:55 +08:00
}