nix-config/modules/default/nixos/desktop/games/minecraft.nix
2025-02-09 16:49:24 +01:00

6 lines
130 B
Nix

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