remove opencode superpowers
This commit is contained in:
parent
1d05ab6d6f
commit
28a3d2fb26
2 changed files with 1 additions and 2 deletions
|
|
@ -1,35 +0,0 @@
|
|||
{ config, inputs, ... }:
|
||||
|
||||
let
|
||||
mkNginxVHosts = inputs.self.lib.mkNginxVHosts;
|
||||
in
|
||||
|
||||
{
|
||||
services = {
|
||||
miniflux = {
|
||||
enable = true;
|
||||
config = {
|
||||
LISTEN_ADDR = "localhost:8080";
|
||||
CREATE_ADMIN = 1;
|
||||
FETCHER_ALLOW_PRIVATE_NETWORKS = 1;
|
||||
POLLING_SCHEDULER = "entry_frequency";
|
||||
SCHEDULER_ENTRY_FREQUENCY_MIN_INTERVAL = 60;
|
||||
SCHEDULER_ENTRY_FREQUENCY_MAX_INTERVAL = 10080;
|
||||
};
|
||||
adminCredentialsFile = config.age.secrets.miniflux-admincreds.path;
|
||||
createDatabaseLocally = true;
|
||||
};
|
||||
|
||||
nginx.virtualHosts = mkNginxVHosts {
|
||||
domains."rss.baduhai.dev" = {
|
||||
locations."/".proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}/";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
age.secrets.miniflux-admincreds = {
|
||||
file = "${inputs.self}/secrets/miniflux-admincreds.age";
|
||||
owner = "miniflux";
|
||||
group = "miniflux";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue