fix(copypary): zotero webdav
Some checks failed
build / build (push) Has been cancelled

This commit is contained in:
2026-03-27 14:11:05 -06:00
parent 258c3edeab
commit 8bd0e2a534
10 changed files with 108 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
{ 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"
];
};
}