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;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
services.wlsunset = {
|
services.wlsunset = {
|
||||||
enable = false;
|
enable = true;
|
||||||
latitude = "40.712776";
|
latitude = "40.712776";
|
||||||
longitude = "-74.005974";
|
longitude = "-74.005974";
|
||||||
temperature = {
|
temperature = {
|
||||||
|
|
|
@ -92,7 +92,7 @@
|
||||||
nvidia = {
|
nvidia = {
|
||||||
powerManagement.enable = true;
|
powerManagement.enable = true;
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.production;
|
package = config.boot.kernelPackages.nvidiaPackages.stable;
|
||||||
};
|
};
|
||||||
opengl = {
|
opengl = {
|
||||||
enable = true;
|
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