Files
sydnix/modules/home/prism-launcher.nix
Madeleine Sydney Ślaga 902d9e4c38
All checks were successful
build / build (push) Successful in 2m59s
wip: fix(copypary): zotero webdav
2026-03-27 16:32:59 -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"
];
};
}