feat: try rework
This commit is contained in:
parent
1ddbd3b8b6
commit
ecf10628c3
51 changed files with 1941 additions and 445 deletions
35
config/services.nix
Normal file
35
config/services.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Config-backed service registry.
|
||||
# NOTE: VPN credentials are temporarily stored here and will be moved
|
||||
# to the dedicated secret system in a later migration step.
|
||||
let
|
||||
storage_data = import ../config/storage.nix;
|
||||
secrets = import ../intermediate/secrets.nix;
|
||||
in
|
||||
rec {
|
||||
continuwuity = {
|
||||
port = 6167;
|
||||
};
|
||||
|
||||
qbittorrent = {
|
||||
port = 8085;
|
||||
root_dir = "${storage_data.ssd.path}/qbittorrent";
|
||||
vpn = {
|
||||
username_file = secrets.byName.qbittorrent_vpn_username.path;
|
||||
password_file = secrets.byName.qbittorrent_vpn_password.path;
|
||||
};
|
||||
};
|
||||
|
||||
kiwix = {
|
||||
port = 8086;
|
||||
root_dir = "${storage_data.ssd.path}/kiwix";
|
||||
urls = [
|
||||
"https://ftp.fau.de/kiwix/zim/wikipedia/wikipedia_en_all_nopic_2025-08.zim"
|
||||
"https://download.kiwix.org/zim/wikipedia/wikipedia_de_all_nopic_2026-01.zim"
|
||||
];
|
||||
};
|
||||
|
||||
matrix = {
|
||||
trusted_servers = [ "matrix.org" ];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue