Files
sydnix/modules/home/prism-launcher.nix
Madeleine Sydney Ślaga 8bd0e2a534
Some checks failed
build / build (push) Has been cancelled
fix(copypary): zotero webdav
2026-03-27 16:32:46 -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"
];
};
}