Compare commits
No commits in common. "34defccf4d718c0b9c7d43fdf38317e1c82b3912" and "53e72627b03d6a3428240613e0747e532a79c67d" have entirely different histories.
34defccf4d
...
53e72627b0
3 changed files with 13 additions and 42 deletions
|
@ -43,18 +43,23 @@ in {
|
||||||
port = 6697;
|
port = 6697;
|
||||||
chathistory = true;
|
chathistory = true;
|
||||||
channels = [
|
channels = [
|
||||||
"##chat"
|
|
||||||
"##politics"
|
|
||||||
"##rust"
|
|
||||||
"#datahoarder"
|
|
||||||
"#git"
|
|
||||||
"#indieweb"
|
|
||||||
"#indieweb-dev"
|
|
||||||
"#linux"
|
|
||||||
"#lobsters"
|
"#lobsters"
|
||||||
"#nixos"
|
"#nixos"
|
||||||
|
"#linux"
|
||||||
|
"##rust"
|
||||||
|
"#git"
|
||||||
|
"#c"
|
||||||
|
"##programming"
|
||||||
|
"#hardware"
|
||||||
|
"##chat"
|
||||||
"#OSRS"
|
"#OSRS"
|
||||||
|
"##math"
|
||||||
|
"##physics"
|
||||||
|
"#haskell"
|
||||||
"#soju"
|
"#soju"
|
||||||
|
"#datahoarder"
|
||||||
|
"#startrek"
|
||||||
|
"#indieweb"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,6 +19,5 @@ with lib; {
|
||||||
./mealie.nix
|
./mealie.nix
|
||||||
./dufs.nix
|
./dufs.nix
|
||||||
./isso.nix
|
./isso.nix
|
||||||
./miniflux.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
{
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; {
|
|
||||||
services = {
|
|
||||||
nginx = {
|
|
||||||
virtualHosts."rss.posixlycorrect.com" = {
|
|
||||||
enableACME = true;
|
|
||||||
forceSSL = true;
|
|
||||||
extraConfig = ''
|
|
||||||
proxy_headers_hash_max_size 512;
|
|
||||||
proxy_headers_hash_bucket_size 128;
|
|
||||||
'';
|
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://127.0.0.1:8087";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
miniflux = {
|
|
||||||
enable = true;
|
|
||||||
adminCredentialsFile = "/var/trust/miniflux/adminCredentialsFile";
|
|
||||||
config = {
|
|
||||||
CLEANUP_FREQUENCY = 48;
|
|
||||||
LISTEN_ADDR = "127.0.0.1:8087";
|
|
||||||
BASE_URL = "https://rss.posixlycorrect.com";
|
|
||||||
CREATE_ADMIN = 1;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue