From da7921ebed22a8844acd323df2114cea888c8afc Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 10 Sep 2024 00:55:23 +0200 Subject: [PATCH] gaming: add uni-sync service --- hosts/solaire/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/solaire/default.nix b/hosts/solaire/default.nix index 56b6216..efa0220 100644 --- a/hosts/solaire/default.nix +++ b/hosts/solaire/default.nix @@ -33,6 +33,13 @@ ]; }; + systemd.services.uni-sync = { + enable = true; + serviceConfig = { + ExecStart = "${pkgs.uni-sync}/bin/uni-sync"; + }; + wantedBy = ["multi-user.target"]; + }; modules.nvidia.enable = true; modules.gaming.enable = true;