Compare commits

..

2 commits

Author SHA1 Message Date
359b6651db hosts: disable local builds on Macbook; add garnix cache for Gaming
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-16 12:42:27 +01:00
81b5fc84d1 authelia: extend session inactivity timeout to 2h
Inactivity was 5m which caused logouts while working in VS Code
(no new page loads). Bumped inactivity to 2h, expiration to 12h.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-16 12:42:17 +01:00
3 changed files with 12 additions and 4 deletions

View file

@ -15,6 +15,8 @@
vscodium
];
nix.settings.max-jobs = 0;
services.tlp.enable = false;
programs.nix-ld.enable = true;
services.power-profiles-daemon.enable = true;

View file

@ -9,8 +9,14 @@
boot.kernelPackages = lib.mkForce pkgs.cachyosKernels.linuxPackages-cachyos-bore;
nix.settings = {
substituters = [ "https://attic.xuyh0120.win/lantian" ];
trusted-public-keys = [ "lantian:EeAUQ+W+6r7EtwnmYjeVwx5kOGEBpjlBfPlzGlTNvHc=" ];
substituters = [
"https://attic.xuyh0120.win/lantian"
"https://cache.garnix.io"
];
trusted-public-keys = [
"lantian:EeAUQ+W+6r7EtwnmYjeVwx5kOGEBpjlBfPlzGlTNvHc="
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
];
};
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];

View file

@ -90,8 +90,8 @@ in
domain = "nordhammer.it";
authelia_url = "https://auth.nordhammer.it";
}];
expiration = "1h";
inactivity = "5m";
expiration = "12h";
inactivity = "2h";
};
storage.local.path = "/var/lib/authelia-main/db.sqlite3";