Compare commits
2 Commits
b51f2b3992
...
445dd47347
| Author | SHA1 | Date |
|---|---|---|
|
|
445dd47347 | |
|
|
f3a449e90d |
|
|
@ -49,7 +49,12 @@
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
chromium.enable = true;
|
chromium.enable = true;
|
||||||
firefox.enable = true;
|
firefox = {
|
||||||
|
enable = true;
|
||||||
|
nativeMessagingHosts.packages = [
|
||||||
|
pkgs.fx-cast-bridge
|
||||||
|
];
|
||||||
|
};
|
||||||
kdeconnect.enable = true;
|
kdeconnect.enable = true;
|
||||||
partition-manager.enable = true;
|
partition-manager.enable = true;
|
||||||
wireshark.enable = true;
|
wireshark.enable = true;
|
||||||
|
|
@ -61,6 +66,7 @@
|
||||||
obs-livesplit-one
|
obs-livesplit-one
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
thunar.enable = true;
|
||||||
};
|
};
|
||||||
environment.sessionVariables.TERMINAL = "footclient";
|
environment.sessionVariables.TERMINAL = "footclient";
|
||||||
|
|
||||||
|
|
@ -74,9 +80,11 @@
|
||||||
via
|
via
|
||||||
libimobiledevice
|
libimobiledevice
|
||||||
|
|
||||||
dwarfdump
|
|
||||||
ffmpeg
|
ffmpeg
|
||||||
gimp
|
gimp
|
||||||
|
feh
|
||||||
|
vlc
|
||||||
|
mpv
|
||||||
|
|
||||||
kdePackages.plasma-thunderbolt
|
kdePackages.plasma-thunderbolt
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ in {
|
||||||
units
|
units
|
||||||
units-desktop
|
units-desktop
|
||||||
patchelf
|
patchelf
|
||||||
|
dwarfdump
|
||||||
gdb
|
gdb
|
||||||
kubectl
|
kubectl
|
||||||
p7zip
|
p7zip
|
||||||
|
|
@ -123,6 +124,7 @@ in {
|
||||||
hdc = "hexdump -ve '\"\\\x\" 1/1 \"%02x\"'";
|
hdc = "hexdump -ve '\"\\\x\" 1/1 \"%02x\"'";
|
||||||
nose = "pytest -v --capture=no --pdbcls=IPython.terminal.debugger:TerminalPdb";
|
nose = "pytest -v --capture=no --pdbcls=IPython.terminal.debugger:TerminalPdb";
|
||||||
mkvirtualenv = "mkvirtualenv -r /etc/venv-default.txt";
|
mkvirtualenv = "mkvirtualenv -r /etc/venv-default.txt";
|
||||||
|
woman = "man";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
tmux = {
|
tmux = {
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,31 @@ function nixos-edit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function nixos-apply() {
|
function nixos-apply() {
|
||||||
sudo nixos-rebuild switch --flake ~/nixos-config#$HOST "$@"
|
flags=("--sudo" "--use-substitutes")
|
||||||
|
host="$HOST"
|
||||||
|
action="switch"
|
||||||
|
while [[ "$#" != 0 ]]; do
|
||||||
|
case "$1" in
|
||||||
|
--host)
|
||||||
|
host="$2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
--boot)
|
||||||
|
action="boot"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
flags+=("$1")
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
flags+=("--flake" "$HOME/nixos-config#$host")
|
||||||
|
if [[ "$host" != "$HOST" ]]; then
|
||||||
|
flags+=("--target-host" "$host")
|
||||||
|
fi
|
||||||
|
nixos-rebuild "$action" "${flags[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
lsflags=()
|
lsflags=()
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,19 @@ let overlay = final: prev: {
|
||||||
hash = "sha256-vwGHiLKSjJor4A+r599DlvSHXkDuuLSSQ4/tWFALMKU=";
|
hash = "sha256-vwGHiLKSjJor4A+r599DlvSHXkDuuLSSQ4/tWFALMKU=";
|
||||||
})];
|
})];
|
||||||
});
|
});
|
||||||
|
sftpgo = prev.sftpgo.overrideAttrs (prev: {
|
||||||
|
# killing and tearing and ripping and maiming
|
||||||
|
postPatch = (prev.postPatch or "") + ''
|
||||||
|
sed -E -i -e '/func preserveUserProfile/a newUser.Groups = user.Groups;' internal/common/eventmanager.go
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
fx-cast-bridge = prev.fx-cast-bridge.overrideAttrs (prev: {
|
||||||
|
postConfigure = (prev.postConfigure or "") + ''
|
||||||
|
substituteInPlace node_modules/mdns/lib/resolver_sequence_tasks.js --replace-fail \
|
||||||
|
'cares.getaddrinfo(req, host, family, 0, false)' \
|
||||||
|
'cares.getaddrinfo(req, host, family, 0, 0)'
|
||||||
|
'';
|
||||||
|
});
|
||||||
idapro9 = pkgs.callPackage ../pkgs/idapro9.nix {};
|
idapro9 = pkgs.callPackage ../pkgs/idapro9.nix {};
|
||||||
condition-unmetered-network = pkgs.callPackage ../pkgs/condition-unmetered-network {};
|
condition-unmetered-network = pkgs.callPackage ../pkgs/condition-unmetered-network {};
|
||||||
units-desktop = pkgs.callPackage ../pkgs/units-desktop.nix {};
|
units-desktop = pkgs.callPackage ../pkgs/units-desktop.nix {};
|
||||||
|
|
|
||||||
|
|
@ -25,9 +25,9 @@
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
networking.firewall.allowedTCPPorts = [ 22 80 443 1337 1338 8081 2222 ];
|
networking.firewall.allowedTCPPorts = [ 22 80 443 1337 1338 8081 2222 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 1337 ];
|
networking.firewall.allowedUDPPorts = [ 1337 ];
|
||||||
|
systemd.coredump.enable = false;
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
#services.immich.enable = true;
|
|
||||||
|
|
||||||
hardware.ipu6 = {
|
hardware.ipu6 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -37,10 +37,15 @@
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
additionalModules = [
|
||||||
|
pkgs.nginxModules.rtmp
|
||||||
|
];
|
||||||
|
|
||||||
recommendedGzipSettings = true;
|
recommendedGzipSettings = true;
|
||||||
recommendedOptimisation = true;
|
recommendedOptimisation = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
recommendedTlsSettings = true;
|
recommendedTlsSettings = true;
|
||||||
|
clientMaxBodySize = "10g";
|
||||||
|
|
||||||
virtualHosts = {
|
virtualHosts = {
|
||||||
"home.rhelmot.io" = {
|
"home.rhelmot.io" = {
|
||||||
|
|
@ -85,7 +90,54 @@
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"sftpgo.home.rhelmot.io" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:3006";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"jellyfin.home.rhelmot.io" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8096";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# "owncast.home.rhelmot.io" = {
|
||||||
|
# enableACME = true;
|
||||||
|
# forceSSL = true;
|
||||||
|
# locations."/" = {
|
||||||
|
# proxyPass = "http://127.0.0.1:3007";
|
||||||
|
# proxyWebsockets = true;
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
"127.0.0.1:1934" = {
|
||||||
|
listen = [{ addr = "127.0.0.1"; port = 1934; ssl = false; }];
|
||||||
|
locations."/" = {
|
||||||
|
root = "/var/www/stream/";
|
||||||
|
tryFiles = "/$arg_name =404";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
appendConfig = ''
|
||||||
|
rtmp {
|
||||||
|
server {
|
||||||
|
listen 1935;
|
||||||
|
chunk_size 4000;
|
||||||
|
application live {
|
||||||
|
live on;
|
||||||
|
allow publish all;
|
||||||
|
allow play all;
|
||||||
|
notify_method get;
|
||||||
|
on_publish http://127.0.0.1:1934/;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
services.vaultwarden = {
|
services.vaultwarden = {
|
||||||
|
|
@ -128,6 +180,14 @@
|
||||||
settings = {
|
settings = {
|
||||||
newVersionCheck.enabled = false;
|
newVersionCheck.enabled = false;
|
||||||
server.externalDomain = "https://immich.home.rhelmot.io";
|
server.externalDomain = "https://immich.home.rhelmot.io";
|
||||||
|
oauth = {
|
||||||
|
enabled = true;
|
||||||
|
autoLaunch = true;
|
||||||
|
buttonText = "Single Sign-On";
|
||||||
|
clientId = "immich";
|
||||||
|
clientSecret._secret = "/var/lib/immich/oidc-client-secret";
|
||||||
|
issuerUrl = "https://auth.rhelmot.io/realms/rhelmot";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -194,12 +254,65 @@
|
||||||
settings.gui.user = "audrey";
|
settings.gui.user = "audrey";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.sftpgo = {
|
||||||
|
enable = true;
|
||||||
|
dataDir = "/var/lib/sftpgo";
|
||||||
|
extraReadWriteDirs = [
|
||||||
|
"/var/lib/jellyfin/library"
|
||||||
|
];
|
||||||
|
settings = {
|
||||||
|
tz = "local";
|
||||||
|
httpd.bindings = [{
|
||||||
|
port = 3006;
|
||||||
|
# 1 means OIDC for the WebAdmin UI.
|
||||||
|
# 2 means OIDC for the WebClient UI.
|
||||||
|
# 4 means login form for the WebAdmin UI.
|
||||||
|
# 8 means login form for the WebClient UI.
|
||||||
|
# 16 means the admin token endpoint for REST API.
|
||||||
|
# 32 means the user token endpoint for REST API.
|
||||||
|
# 64 means admin API key login.
|
||||||
|
# 128 means user API key login.
|
||||||
|
disabled_login_methods = 1 + 8;
|
||||||
|
oidc = {
|
||||||
|
config_url = "https://auth.rhelmot.io/realms/rhelmot";
|
||||||
|
client_id = "sftpgo";
|
||||||
|
client_secret_file = "/var/lib/sftpgo/oidc-client-secret";
|
||||||
|
redirect_base_url = "https://sftpgo.home.rhelmot.io";
|
||||||
|
username_field = "preferred_username";
|
||||||
|
scopes = [
|
||||||
|
"openid"
|
||||||
|
"profile"
|
||||||
|
"email"
|
||||||
|
"sftpgo"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}];
|
||||||
|
sftpd.bindings = [{
|
||||||
|
port = 28022;
|
||||||
|
address = "0.0.0.0";
|
||||||
|
}];
|
||||||
|
sftpd.password_authentication = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.jellyfin = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# services.owncast = {
|
||||||
|
# enable = true;
|
||||||
|
# port = 3007;
|
||||||
|
# rtmp-port = 1935;
|
||||||
|
# };
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
# - sftpgo
|
|
||||||
# - transfer old nextcloud files
|
# - transfer old nextcloud files
|
||||||
# - jellyfin
|
# - move old data files to sftpgo/audrey?
|
||||||
|
# - alerting
|
||||||
# ON HOLD
|
# ON HOLD
|
||||||
# - dyndns
|
# - dyndns
|
||||||
# - https://github.com/qdm12/ddns-updater/pull/1046
|
# - https://github.com/qdm12/ddns-updater/pull/1046
|
||||||
# - https://github.com/ddclient/ddclient/pull/852
|
# - https://github.com/ddclient/ddclient/pull/852
|
||||||
|
# - hedgedoc keycloak
|
||||||
|
# - waiting for hedgedoc2 release to get oidc
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,8 @@
|
||||||
"main/hedgedoc".mountPoint = "/var/lib/hedgedoc";
|
"main/hedgedoc".mountPoint = "/var/lib/hedgedoc";
|
||||||
"main/immich".mountPoint = "/var/lib/immich";
|
"main/immich".mountPoint = "/var/lib/immich";
|
||||||
"main/syncthing".mountPoint = "/var/lib/syncthing";
|
"main/syncthing".mountPoint = "/var/lib/syncthing";
|
||||||
|
"main/jellyfin".mountPoint = "/var/lib/jellyfin";
|
||||||
|
"main/jellyfin-cache".mountPoint = "/var/cache/jellyfin";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
|
|
|
||||||
|
|
@ -102,12 +102,14 @@
|
||||||
"mspa"
|
"mspa"
|
||||||
"wiki-js"
|
"wiki-js"
|
||||||
"forgejo"
|
"forgejo"
|
||||||
|
"keycloak"
|
||||||
];
|
];
|
||||||
ensureUsers = [
|
ensureUsers = [
|
||||||
{ name = "bingosync"; ensureDBOwnership = true; }
|
{ name = "bingosync"; ensureDBOwnership = true; }
|
||||||
{ name = "mspa"; ensureDBOwnership = true; }
|
{ name = "mspa"; ensureDBOwnership = true; }
|
||||||
{ name = "wiki-js"; ensureDBOwnership = true; }
|
{ name = "wiki-js"; ensureDBOwnership = true; }
|
||||||
{ name = "forgejo"; ensureDBOwnership = true; }
|
{ name = "forgejo"; ensureDBOwnership = true; }
|
||||||
|
{ name = "keycloak"; ensureDBOwnership = true; }
|
||||||
];
|
];
|
||||||
authentication = pkgs.lib.mkOverride 10 ''
|
authentication = pkgs.lib.mkOverride 10 ''
|
||||||
#type database DBuser auth-method optional_ident_map
|
#type database DBuser auth-method optional_ident_map
|
||||||
|
|
@ -121,6 +123,7 @@
|
||||||
defaultmap bingosync bingosync
|
defaultmap bingosync bingosync
|
||||||
defaultmap wiki-js wiki-js
|
defaultmap wiki-js wiki-js
|
||||||
defaultmap forgejo forgejo
|
defaultmap forgejo forgejo
|
||||||
|
defaultmap keycloak keycloak
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -249,8 +252,6 @@
|
||||||
proxyPass = "http://192.168.100.11:3000";
|
proxyPass = "http://192.168.100.11:3000";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
extraConfig = ''
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"anons.ee" = {
|
"anons.ee" = {
|
||||||
|
|
@ -260,8 +261,14 @@
|
||||||
proxyPass = "http://192.168.100.11:3000";
|
proxyPass = "http://192.168.100.11:3000";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
extraConfig = ''
|
};
|
||||||
'';
|
};
|
||||||
|
"auth.rhelmot.io" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:3030";
|
||||||
|
proxyWebsockets = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -292,4 +299,22 @@
|
||||||
config.imports = [ ./anonsee.nix ];
|
config.imports = [ ./anonsee.nix ];
|
||||||
};
|
};
|
||||||
services.nginx.logError = "stderr info";
|
services.nginx.logError = "stderr info";
|
||||||
|
|
||||||
|
services.keycloak = {
|
||||||
|
enable = true;
|
||||||
|
database.host = "/run/postgresql";
|
||||||
|
database.type = "postgresql";
|
||||||
|
initialAdminPassword = "bitesyouchangeme";
|
||||||
|
plugins = with pkgs.keycloak.plugins; [
|
||||||
|
junixsocket-common
|
||||||
|
junixsocket-native-common
|
||||||
|
];
|
||||||
|
settings = {
|
||||||
|
hostname = "auth.rhelmot.io";
|
||||||
|
http-host = "127.0.0.1";
|
||||||
|
http-port = 3030;
|
||||||
|
proxy-headers = "xforwarded";
|
||||||
|
http-enabled = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue