Compare commits
2 commits
6d7867b45c
...
b8b8e015c5
Author | SHA1 | Date | |
---|---|---|---|
|
b8b8e015c5 | ||
|
a91afd3b0a |
2 changed files with 27 additions and 2 deletions
|
@ -15,10 +15,10 @@ in
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.nixVersions.latest;
|
package = pkgs.nixVersions.latest;
|
||||||
|
|
||||||
extraOptions = "experimental-features = nix-command flakes";
|
extraOptions = "experimental-features = nix-command flakes pipe-operator";
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" "pipe-operator" ];
|
||||||
allowed-users = [ "@wheel" ];
|
allowed-users = [ "@wheel" ];
|
||||||
trusted-users = [ "@wheel" ];
|
trusted-users = [ "@wheel" ];
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,12 @@ in
|
||||||
{
|
{
|
||||||
name = "Media";
|
name = "Media";
|
||||||
items = [
|
items = [
|
||||||
|
{
|
||||||
|
name = "Jellyfin";
|
||||||
|
tag = "app";
|
||||||
|
url = "http://${config.networking.hostName}:8096";
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "Radarr";
|
name = "Radarr";
|
||||||
tag = "app";
|
tag = "app";
|
||||||
|
@ -63,6 +69,25 @@ in
|
||||||
tag = "app";
|
tag = "app";
|
||||||
url = "http://${config.networking.hostName}:${builtins.toString config.services.sonarr.settings.server.port}";
|
url = "http://${config.networking.hostName}:${builtins.toString config.services.sonarr.settings.server.port}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "Lidarr";
|
||||||
|
tag = "app";
|
||||||
|
url = "http://${config.networking.hostName}:${builtins.toString config.services.lidarr.settings.server.port}";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "qBitTorrent";
|
||||||
|
tag = "app";
|
||||||
|
url = "http://${config.networking.hostName}:${builtins.toString config.services.qbittorrent.webuiPort}";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "SabNZB";
|
||||||
|
tag = "app";
|
||||||
|
url = "http://${config.networking.hostName}:8080";
|
||||||
|
}
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue