mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
90 lines
2.3 KiB
Nix
90 lines
2.3 KiB
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
config = lib.mkIf config.swarselsystems.server.navidrome {
|
|
environment.systemPackages = with pkgs; [
|
|
pciutils
|
|
alsa-utils
|
|
mpv
|
|
];
|
|
|
|
users = {
|
|
groups = {
|
|
navidrome = {
|
|
gid = 61593;
|
|
};
|
|
};
|
|
|
|
users = {
|
|
navidrome = {
|
|
isSystemUser = true;
|
|
uid = 61593;
|
|
group = "navidrome";
|
|
extraGroups = [ "audio" "utmp" "users" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
hardware = {
|
|
opengl.enable = true;
|
|
enableAllFirmware = true;
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 4040 ];
|
|
|
|
services.navidrome = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
settings = {
|
|
LogLevel = "trace";
|
|
Address = "0.0.0.0";
|
|
Port = 4040;
|
|
MusicFolder = "/Vault/Eternor/Musik";
|
|
EnableSharing = true;
|
|
EnableTranscodingConfig = true;
|
|
Scanner.GroupAlbumReleases = true;
|
|
ScanSchedule = "@every 24h";
|
|
Jukebox = {
|
|
Enabled = true;
|
|
Default = "pch";
|
|
Devices = [
|
|
"pch"
|
|
];
|
|
};
|
|
# Insert these values locally as sops-nix does not work for them
|
|
LastFM.ApiKey = builtins.readFile /home/swarsel/api/lastfm-secret;
|
|
LastFM.Secret = builtins.readFile /home/swarsel/api/lastfm-key;
|
|
Spotify.ID = builtins.readFile /home/swarsel/api/spotify-id;
|
|
Spotify.Secret = builtins.readFile /home/swarsel/api/spotify-secret;
|
|
UILoginBackgroundUrl = "https://i.imgur.com/OMLxi7l.png";
|
|
UIWelcomeMessage = "~SwarselSound~";
|
|
};
|
|
};
|
|
|
|
services.nginx = {
|
|
virtualHosts = {
|
|
"sound.swarsel.win" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
acmeRoot = null;
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://192.168.1.2:4040";
|
|
proxyWebsockets = true;
|
|
extraConfig = ''
|
|
proxy_redirect http:// https://;
|
|
proxy_read_timeout 600s;
|
|
proxy_send_timeout 600s;
|
|
proxy_buffering off;
|
|
proxy_request_buffering off;
|
|
client_max_body_size 0;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
}
|