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 = {
|
||||
package = pkgs.nixVersions.latest;
|
||||
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
extraOptions = "experimental-features = nix-command flakes pipe-operator";
|
||||
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
experimental-features = [ "nix-command" "flakes" "pipe-operator" ];
|
||||
allowed-users = [ "@wheel" ];
|
||||
trusted-users = [ "@wheel" ];
|
||||
|
||||
|
|
|
@ -52,6 +52,12 @@ in
|
|||
{
|
||||
name = "Media";
|
||||
items = [
|
||||
{
|
||||
name = "Jellyfin";
|
||||
tag = "app";
|
||||
url = "http://${config.networking.hostName}:8096";
|
||||
}
|
||||
|
||||
{
|
||||
name = "Radarr";
|
||||
tag = "app";
|
||||
|
@ -63,6 +69,25 @@ in
|
|||
tag = "app";
|
||||
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