1
0
Fork 0
puter/profiles/gaming/prismlauncher.nix
2025-05-18 01:08:10 +02:00

16 lines
184 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.profiles.gaming;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = [
pkgs.prismlauncher
];
};
}