Files
sydnix/modules/home/prism-launcher.nix
Madeleine Sydney Ślaga 31b61ddd73
All checks were successful
build / build (push) Successful in 2m5s
feat(prism-launcher): init
2026-03-30 18:27:54 -06:00

19 lines
343 B
Nix

{ config, lib, pkgs, ... }:
let cfg = config.sydnix.prism-launcher;
in {
options.sydnix.prism-launcher = {
enable = lib.mkEnableOption "Prism Launcher";
};
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.prismlauncher
];
sydnix.impermanence.directories = [
".local/share/PrismLauncher"
];
};
}