diff options
| author | adikro <adikro@disroot.org> | 2026-01-08 20:40:35 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-01-08 20:40:35 +0100 |
| commit | 5d0f2554cf56459b0afd27d3ed437a7fa50602a9 (patch) | |
| tree | bfaa6a1f79e942f54db2bc76cb47a8771b9c8f3e /os/srv/zzz.nix | |
| parent | 5b074f906a954ac25805ce6cbcbf7568cd97dafc (diff) | |
some modularization
Diffstat (limited to 'os/srv/zzz.nix')
| -rw-r--r-- | os/srv/zzz.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/os/srv/zzz.nix b/os/srv/zzz.nix new file mode 100644 index 0000000..cd9a67e --- /dev/null +++ b/os/srv/zzz.nix @@ -0,0 +1,19 @@ +{ config, lib, pkgs, ... }: +let + cfg = config.os.srv.zzz; +in +{ + options.os.srv.zzz.enable = lib.mkEnableOption "enables the zzz rpc service"; + config = lib.mkIf cfg.enable { + systemd.user.services.zzz-presence = { + description = "Zenless Zone Zero Discord Rich Presence"; + wantedBy = [ "default.target" ]; + + serviceConfig = { + ExecStart = "${pkgs.python3.withPackages (ps: [ ps.pypresence ])}/bin/python3 /etc/nixos/resources/zzz.py"; + Restart = "always"; + RestartSec = "10"; + }; + }; + }; +} |
