Compare commits
No commits in common. "80fb4c5a3c0967407c7425f1b6877880e6cb1175" and "92b94f0d2fb0211c50d18bed1f34e98ca0fabf58" have entirely different histories.
80fb4c5a3c
...
92b94f0d2f
3 changed files with 18 additions and 2 deletions
|
@ -8,7 +8,7 @@ _: {
|
|||
xwayland.enable = true;
|
||||
};
|
||||
services.wlsunset = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
latitude = "40.712776";
|
||||
longitude = "-74.005974";
|
||||
temperature = {
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
nvidia = {
|
||||
powerManagement.enable = true;
|
||||
modesetting.enable = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.production;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||
};
|
||||
opengl = {
|
||||
enable = true;
|
||||
|
|
16
hosts/tsuki/services/jellyfin-rpc.nix
Normal file
16
hosts/tsuki/services/jellyfin-rpc.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
_: {
|
||||
systemd.services.jellyfin-rpc = {
|
||||
enable = true;
|
||||
wantedBy = [
|
||||
"multi-user.target"
|
||||
];
|
||||
description = "Displays the content you're currently watching on Discord!";
|
||||
|
||||
serviceConfig = {
|
||||
User = "root";
|
||||
ExecStart = "/nix/store/gfwcai4i1cl3w8lbli4dsg0z369z2fn4-user-environment/bin/jellyfin-rpc --config /home/notoh/.config/jellyfin-rpc/main.json";
|
||||
Restart = "always";
|
||||
RestartSec = 30;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue