Compare commits
No commits in common. "c10fefd8a7ba177879d1e15b3ec4170106ad8f4c" and "ef0d474c1bafe1d2e64916312f3987b3102eaee1" have entirely different histories.
c10fefd8a7
...
ef0d474c1b
7 changed files with 2 additions and 34 deletions
|
@ -104,7 +104,8 @@
|
|||
|
||||
#utility
|
||||
new-tab-override
|
||||
libredirect
|
||||
sponsorblock
|
||||
return-youtube-dislikes
|
||||
|
||||
#misc
|
||||
tokyo-night-v2
|
||||
|
|
|
@ -44,10 +44,6 @@
|
|||
name = "attic";
|
||||
ensureDBOwnership = true;
|
||||
}
|
||||
{
|
||||
name = "miniflux";
|
||||
ensureDBOwnership = true;
|
||||
}
|
||||
];
|
||||
ensureDatabases = [
|
||||
"forgejo"
|
||||
|
@ -56,7 +52,6 @@
|
|||
"authelia"
|
||||
"vaultwarden"
|
||||
"attic"
|
||||
"miniflux"
|
||||
];
|
||||
};
|
||||
services.postgresqlBackup = {
|
||||
|
|
|
@ -118,7 +118,6 @@
|
|||
"prowlarr.internal.flake.sh" = "192.168.1.54";
|
||||
"stash.internal.flake.sh" = "192.168.1.98";
|
||||
"nextcloud.internal.flake.sh" = "192.168.1.199";
|
||||
"news.internal.flake.sh" = "192.168.1.98";
|
||||
|
||||
# misc
|
||||
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
tigervnc
|
||||
imv
|
||||
mpv
|
||||
nom
|
||||
rustypaste-cli
|
||||
gimp
|
||||
cryptomator
|
||||
|
|
|
@ -8,6 +8,5 @@
|
|||
./wallos.nix
|
||||
./homepage.nix
|
||||
./searxng.nix
|
||||
./miniflux.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
|
@ -45,11 +45,6 @@ _: {
|
|||
entrypoints = ["web"];
|
||||
service = "hass";
|
||||
};
|
||||
miniflux = {
|
||||
rule = "Host(`news.internal.flake.sh`)";
|
||||
entrypoints = ["web"];
|
||||
service = "miniflux";
|
||||
};
|
||||
};
|
||||
services = {
|
||||
stash.loadBalancer.servers = [{url = "http://localhost:9999";}];
|
||||
|
@ -59,7 +54,6 @@ _: {
|
|||
wallos.loadBalancer.servers = [{url = "http://localhost:8282";}];
|
||||
searxng.loadBalancer.servers = [{url = "http://localhost:8100";}];
|
||||
hass.loadBalancer.servers = [{url = "http://localhost:8123";}];
|
||||
miniflux.loadBalancer.servers = [{url = "http://localhost:9000";}];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue