Files
sydnix/modules/home/prism-launcher.nix
Madeleine Sydney Ślaga 262f6779b1
All checks were successful
build / build (push) Successful in 1m36s
wip: fix(copypary): zotero webdav
2026-03-29 19:05:29 -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"
];
};
}