Compare commits

..

No commits in common. "c10fefd8a7ba177879d1e15b3ec4170106ad8f4c" and "ef0d474c1bafe1d2e64916312f3987b3102eaee1" have entirely different histories.

7 changed files with 2 additions and 34 deletions

View file

@ -104,7 +104,8 @@
#utility #utility
new-tab-override new-tab-override
libredirect sponsorblock
return-youtube-dislikes
#misc #misc
tokyo-night-v2 tokyo-night-v2

View file

@ -44,10 +44,6 @@
name = "attic"; name = "attic";
ensureDBOwnership = true; ensureDBOwnership = true;
} }
{
name = "miniflux";
ensureDBOwnership = true;
}
]; ];
ensureDatabases = [ ensureDatabases = [
"forgejo" "forgejo"
@ -56,7 +52,6 @@
"authelia" "authelia"
"vaultwarden" "vaultwarden"
"attic" "attic"
"miniflux"
]; ];
}; };
services.postgresqlBackup = { services.postgresqlBackup = {

View file

@ -118,7 +118,6 @@
"prowlarr.internal.flake.sh" = "192.168.1.54"; "prowlarr.internal.flake.sh" = "192.168.1.54";
"stash.internal.flake.sh" = "192.168.1.98"; "stash.internal.flake.sh" = "192.168.1.98";
"nextcloud.internal.flake.sh" = "192.168.1.199"; "nextcloud.internal.flake.sh" = "192.168.1.199";
"news.internal.flake.sh" = "192.168.1.98";
# misc # misc

View file

@ -44,7 +44,6 @@
tigervnc tigervnc
imv imv
mpv mpv
nom
rustypaste-cli rustypaste-cli
gimp gimp
cryptomator cryptomator

View file

@ -8,6 +8,5 @@
./wallos.nix ./wallos.nix
./homepage.nix ./homepage.nix
./searxng.nix ./searxng.nix
./miniflux.nix
]; ];
} }

View file

@ -1,19 +0,0 @@
{
config,
lib,
...
}: {
networking.firewall.allowedTCPPorts = [9000];
sops.secrets.miniflux = {};
services.miniflux = {
enable = true;
adminCredentialsFile = config.sops.secrets.miniflux.path;
config = {
LISTEN_ADDR = "0.0.0.0";
PORT = 9000;
DATABASE_URL = lib.mkForce "host=192.168.1.211 port=5432 user=miniflux password=miniflux dbname=miniflux sslmode=disable";
};
};
}

View file

@ -45,11 +45,6 @@ _: {
entrypoints = ["web"]; entrypoints = ["web"];
service = "hass"; service = "hass";
}; };
miniflux = {
rule = "Host(`news.internal.flake.sh`)";
entrypoints = ["web"];
service = "miniflux";
};
}; };
services = { services = {
stash.loadBalancer.servers = [{url = "http://localhost:9999";}]; stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
@ -59,7 +54,6 @@ _: {
wallos.loadBalancer.servers = [{url = "http://localhost:8282";}]; wallos.loadBalancer.servers = [{url = "http://localhost:8282";}];
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}]; searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
hass.loadBalancer.servers = [{url = "http://localhost:8123";}]; hass.loadBalancer.servers = [{url = "http://localhost:8123";}];
miniflux.loadBalancer.servers = [{url = "http://localhost:9000";}];
}; };
}; };
}; };