idkkkk
This commit is contained in:
2025-06-25 18:00:33 -06:00
parent 300e25e6f1
commit 4741124563
14 changed files with 114 additions and 35 deletions

19
modules/home/slippi.nix Normal file
View File

@@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.slippi;
in {
options.sydnix.slippi = {
enable = lib.mkEnableOption "slippi";
};
config = lib.mkIf cfg.enable {
sydnix.impermanence.directories = [
".config/Slippi Launcher"
".config/SlippiOnline"
".config/SlippiPlayback"
# We must manually remove the `export LD_LIBRARY_PATH=...` line for now.
# fuck.
".cache/appimage-run"
];
};
}