nixos/home/minecraft/home.nix

28 lines
470 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
inherit (config.passthrough) gui;
cfg = config.passthrough.minecraft;
enable = cfg.enable && config.home.username == cfg.user;
2025-01-13 11:52:09 +08:00
in
mkIf enable {
home.packages =
with pkgs;
[
jdk8
]
++ optional gui prismlauncher;
wayland.windowManager.sway.config.window.commands = mkIf gui [
2025-01-13 11:52:09 +08:00
{
criteria.app_id = "org.prismlauncher.PrismLauncher";
command = "floating enable";
}
];
2024-01-05 22:24:55 +08:00
}