nix-config/modules/default/common/desktop/games/minecraft.nix
2024-12-27 15:08:02 +01:00

6 lines
130 B
Nix

{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.enable {
environment.systemPackages = with pkgs; [
prismlauncher
];
}