nix-config/modules/nix/games/prism.nix
2025-07-08 17:31:23 +02:00

18 lines
328 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.prism.enable = mkOption {
type = types.bool;
default = false;
description = "prismlauncher";
};
config = mkIf config.smayzy.prism.enable {
environment.systemPackages = with pkgs; [
prismlauncher
];
};
}