yuki: remove miniflux

yuki: remove miniflux
This commit is contained in:
notohh 2024-04-16 13:28:22 -04:00
parent 35f91509bd
commit 907828576b
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 0 additions and 35 deletions

View file

@ -10,7 +10,6 @@
./searxng.nix
./anki-sync-server.nix
./paperless.nix
./miniflux.nix
./hydroxide.nix
];
}

View file

@ -60,21 +60,6 @@ _: {
}
];
}
{
"News" = [
{
"Miniflux" = {
icon = "miniflux";
href = "https://rss.internal.flake.sh";
widget = {
type = "miniflux";
url = "";
key = "{{HOMEPAGE_VAR_MINIFLUX_KEY}}";
};
};
}
];
}
{
"Infra" = [
{

View file

@ -1,19 +0,0 @@
{
config,
lib,
...
}: {
sops.secrets.miniflux = {};
services.miniflux = {
enable = true;
adminCredentialsFile = config.sops.secrets.miniflux.path;
config = {
LISTEN_ADDR = "0.0.0.0";
PORT = 9000;
BASE_URL = "https://rss.internal.flake.sh";
HTTPS = "true";
DATABASE_URL = lib.mkForce "host=100.94.214.100 port=5432 user=miniflux password=miniflux dbname=miniflux sslmode=disable";
};
};
}