Merge branch 'main' of git.sr.ht:~geokkjer/NixOS_configs
This commit is contained in:
commit
869b80468d
|
@ -25,6 +25,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services.audiobookshelf.group = "users";
|
||||||
networking.firewall.allowedTCPPorts = [ audioBookShelfPort ];
|
networking.firewall.allowedTCPPorts = [ audioBookShelfPort ];
|
||||||
#services.audiobookshelf.enable = true;
|
#services.audiobookshelf.enable = true;
|
||||||
#services.audiobookshelf.host = 0.0.0.0 ;
|
#services.audiobookshelf.host = 0.0.0.0 ;
|
||||||
|
|
|
@ -68,6 +68,7 @@
|
||||||
"podman"
|
"podman"
|
||||||
"ollama"
|
"ollama"
|
||||||
"writefreely"
|
"writefreely"
|
||||||
|
"incus-admin"
|
||||||
];
|
];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bottom
|
bottom
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.jellyfin.enable = true;
|
services.jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
group = "users";
|
||||||
|
};
|
||||||
networking.firewall.allowedTCPPorts = [ 8096 8920 ];
|
networking.firewall.allowedTCPPorts = [ 8096 8920 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 1900 7359 ];
|
networking.firewall.allowedUDPPorts = [ 1900 7359 ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue