feat(prism-launcher): init
All checks were successful
build / build (push) Successful in 2m5s

This commit is contained in:
2026-03-27 14:11:05 -06:00
parent c0b60ff0e4
commit 31b61ddd73
2 changed files with 19 additions and 0 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"
];
};
}