mirror of
https://github.com/blahai/nyx.git
synced 2025-06-08 09:03:00 -04:00
A lot of shit from the past month or so
This commit is contained in:
parent
29f489788d
commit
5303b715ff
17 changed files with 306 additions and 224 deletions
|
@ -3,5 +3,6 @@
|
|||
./pipewire.nix
|
||||
./tailscale.nix
|
||||
./jellyfin.nix
|
||||
./immich.nix
|
||||
];
|
||||
}
|
||||
|
|
15
modules/nixos/services/immich.nix
Normal file
15
modules/nixos/services/immich.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}: {
|
||||
services = {
|
||||
immich = {
|
||||
enable = true;
|
||||
host = "0.0.0.0";
|
||||
port = 2283;
|
||||
openFirewall = true;
|
||||
package = pkgs.immich;
|
||||
user = "immich";
|
||||
group = "immich";
|
||||
accelerationDevices = ["/dev/dri/renderD128"];
|
||||
mediaLocation = "/var/lib/immich";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -42,6 +42,13 @@
|
|||
group = "jellyfin";
|
||||
};
|
||||
|
||||
flaresolverr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
port = 8191;
|
||||
package = pkgs.flaresolverr-21hsmw;
|
||||
};
|
||||
|
||||
prowlarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue