This commit is contained in:
mjallen18
2026-02-02 18:14:04 -06:00
parent bd8d1e6485
commit d9d7760e58
16 changed files with 697 additions and 693 deletions

View File

@@ -25,7 +25,11 @@ in
boot = {
kernelModules = [ "kvm" ];
kernelParams = lib.mkDefault [ "quiet" "splash" "udev.log_level=3" ];
kernelParams = lib.mkDefault [
"quiet"
"splash"
"udev.log_level=3"
];
binfmt = lib.mkIf isArm {
registrations."x86_64-linux" = {

View File

@@ -3,7 +3,6 @@
lib,
pkgs,
namespace,
inputs,
...
}:
with lib;
@@ -278,15 +277,17 @@ in
];
# use postgresql instead of sqlite
extraPackages =
ps: with ps; [
ps:
with ps;
[
dateparser
psycopg2
]
++ (with pkgs.${namespace}; [
gehomesdk
magicattr
python-nanokvm
python-roborock
gehomesdk
magicattr
python-nanokvm
python-roborock
]);
config = {

View File

@@ -44,8 +44,12 @@ let
misc.password=${config.sops.placeholder."jallen-nas/sabnzbd/password"}
misc.api_key=${config.sops.placeholder."jallen-nas/sabnzbd/api-key"}
misc.nzb_key=${config.sops.placeholder."jallen-nas/sabnzbd/nzb-key"}
servers."news.newsgroupdirect.com".username=${config.sops.placeholder."jallen-nas/sabnzbd/server/username"}
servers."news.newsgroupdirect.com".password=${config.sops.placeholder."jallen-nas/sabnzbd/server/password"}
servers."news.newsgroupdirect.com".username=${
config.sops.placeholder."jallen-nas/sabnzbd/server/username"
}
servers."news.newsgroupdirect.com".password=${
config.sops.placeholder."jallen-nas/sabnzbd/server/password"
}
'';
};
};