wip: fix(copypary): zotero webdav
All checks were successful
build / build (push) Successful in 1m36s

This commit is contained in:
2026-03-27 14:11:05 -06:00
committed by Madeleine Sydney Slaga
parent 9ffa14e536
commit 262f6779b1
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"
];
};
}