Compare commits

...

3 Commits

Author SHA1 Message Date
447fc61c0b minor cleanups 2026-04-25 20:29:42 +02:00
464e99ab2c jupiter: fix nix cache proxy 2026-04-25 20:29:29 +02:00
a33a909ff0 lifebook: add missing user arg 2026-04-25 18:46:04 +02:00
4 changed files with 10 additions and 3 deletions

View File

@@ -65,6 +65,7 @@
microvm,
impermanence,
lanzaboote,
noctalia,
...
} @ inputs:
let

View File

@@ -97,7 +97,6 @@
})
sdkmanager
android-tools
];
file.".config/wall".source = ../modules/themes/wall.jpg;

View File

@@ -2,7 +2,7 @@
# Lifebook laptop — system configuration
#
{ lib, pkgs, ... }:
{ lib, pkgs, user, ... }:
{
imports = [

View File

@@ -32,8 +32,13 @@
useACMEHost = "home.opel-online.de";
forceSSL = true;
locations."/" = {
proxyPass = "https://cache.ci.kabtop.de";
extraConfig = ''
proxy_pass https://cache.ci.kabtop.de;
proxy_ssl_server_name on;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host cache.ci.kabtop.de;
proxy_cache nix_cache;
proxy_cache_valid 200 14d;
proxy_cache_valid 404 1m;
@@ -70,6 +75,8 @@
};
};
systemd.services.nginx.serviceConfig.ReadWritePaths = [ "/mnt/Pluto/nix-cache" ];
networking.firewall = {
enable = true;
allowedUDPPorts = [ ];