11 lines
171 B
Nix
11 lines
171 B
Nix
{ lib, config, pkgs, ... }:
|
|
let
|
|
cfg = config.modules.games.minecraft;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [
|
|
pkgs.prismlauncher
|
|
];
|
|
};
|
|
}
|