Compare commits

..

2 commits

Author SHA1 Message Date
Chris Kruining
b8b8e015c5
add pipe-operator nix feature
All checks were successful
Test action / Print hello world (push) Successful in 1s
2025-09-03 17:44:19 +02:00
Chris Kruining
a91afd3b0a
expand homer 2025-09-03 17:44:01 +02:00
2 changed files with 27 additions and 2 deletions

View file

@ -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" ];

View file

@ -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";
}
];
}
];