site-config: dedupe cross-host values, fix stale dark-reader urls, drop desktop 1g hugepages
new site-config.nix holds values previously duplicated across hosts:
domain, old_domain, contact_email, timezone, binary_cache (url + pubkey),
dns_servers, lan (cidr + gateway), hosts.{muffin,yarn} (ip/alias/ssh_host_key),
ssh_keys.{laptop,desktop,ci_deploy}.
threaded through specialArgs on all three hosts + home-manager extraSpecialArgs +
homeConfigurations.primary + serverLib. service-configs.nix now takes
{ site_config } as a function arg and drops its https namespace; per-service
domains (gitea/matrix/ntfy/mollysocket/livekit/firefox-sync/grafana) are
derived from site_config.domain. ~15 service files and 6 vm tests migrated.
breakage fixes rolled in:
- home/progs/zen/dark-reader.nix: 5 stale *.gardling.com entries in
disabledFor rewritten to *.sigkill.computer (caddy 301s the old names so
these never fired and the new sigkill urls were getting dark-reader applied)
- modules/desktop-common.nix: drop unused hugepagesz=1G/hugepages=3
kernelParams (no consumer on mreow or yarn; xmrig on muffin still reserves
its own via services/monero/xmrig.nix)
verification: muffin toplevel is bit-identical to pre-refactor baseline.
mreow/yarn toplevels differ only in boot.json kernelParams + darkreader
storage.js (nix-diff verified). deployGuardTest and fail2banVaultwardenTest
(latter exercises site_config.domain via bitwarden.nix) pass.
This commit is contained in:
16
flake.nix
16
flake.nix
@@ -180,17 +180,20 @@
|
|||||||
targetPlatform = system;
|
targetPlatform = system;
|
||||||
buildPlatform = builtins.currentSystem;
|
buildPlatform = builtins.currentSystem;
|
||||||
};
|
};
|
||||||
serviceConfigs = import ./hosts/muffin/service-configs.nix;
|
siteConfig = import ./site-config.nix;
|
||||||
|
serviceConfigs = import ./hosts/muffin/service-configs.nix { site_config = siteConfig; };
|
||||||
serverLib = import ./lib {
|
serverLib = import ./lib {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
lib = nixpkgs-stable.lib;
|
lib = nixpkgs-stable.lib;
|
||||||
pkgs = serverPkgs;
|
pkgs = serverPkgs;
|
||||||
service_configs = serviceConfigs;
|
service_configs = serviceConfigs;
|
||||||
|
site_config = siteConfig;
|
||||||
};
|
};
|
||||||
testSuite = import ./tests/tests.nix {
|
testSuite = import ./tests/tests.nix {
|
||||||
pkgs = serverPkgs;
|
pkgs = serverPkgs;
|
||||||
lib = serverLib;
|
lib = serverLib;
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
|
site_config = siteConfig;
|
||||||
config = self.nixosConfigurations.muffin.config;
|
config = self.nixosConfigurations.muffin.config;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -203,6 +206,7 @@
|
|||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs username hostname;
|
inherit inputs username hostname;
|
||||||
niri-package = niriPackage;
|
niri-package = niriPackage;
|
||||||
|
site_config = siteConfig;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
@@ -222,6 +226,7 @@
|
|||||||
niri-package = niriPackage;
|
niri-package = niriPackage;
|
||||||
homeDirectory = "/home/${username}";
|
homeDirectory = "/home/${username}";
|
||||||
stateVersion = config.system.stateVersion;
|
stateVersion = config.system.stateVersion;
|
||||||
|
site_config = siteConfig;
|
||||||
};
|
};
|
||||||
home-manager.users.${username} = import ./hosts/${hostname}/home.nix;
|
home-manager.users.${username} = import ./hosts/${hostname}/home.nix;
|
||||||
}
|
}
|
||||||
@@ -241,6 +246,7 @@
|
|||||||
hostname = "muffin";
|
hostname = "muffin";
|
||||||
eth_interface = "enp4s0";
|
eth_interface = "enp4s0";
|
||||||
service_configs = serviceConfigs;
|
service_configs = serviceConfigs;
|
||||||
|
site_config = siteConfig;
|
||||||
lib = serverLib;
|
lib = serverLib;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
@@ -349,6 +355,9 @@
|
|||||||
(
|
(
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
|
home-manager.extraSpecialArgs = {
|
||||||
|
site_config = siteConfig;
|
||||||
|
};
|
||||||
home-manager.users.${username} = import ./hosts/muffin/home.nix;
|
home-manager.users.${username} = import ./hosts/muffin/home.nix;
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@@ -376,6 +385,9 @@
|
|||||||
# Ships the shared terminal profile (fish, helix, modern CLI, git).
|
# Ships the shared terminal profile (fish, helix, modern CLI, git).
|
||||||
homeConfigurations.primary = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations.primary = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = desktopPkgs;
|
pkgs = desktopPkgs;
|
||||||
|
extraSpecialArgs = {
|
||||||
|
site_config = siteConfig;
|
||||||
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./home/profiles/terminal.nix
|
./home/profiles/terminal.nix
|
||||||
{
|
{
|
||||||
@@ -389,7 +401,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
deploy.nodes.muffin = {
|
deploy.nodes.muffin = {
|
||||||
hostname = "server-public";
|
hostname = siteConfig.hosts.muffin.alias;
|
||||||
profiles.system = {
|
profiles.system = {
|
||||||
sshUser = "root";
|
sshUser = "root";
|
||||||
user = "root";
|
user = "root";
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
# tools, no GUI-adjacent utilities — those belong in profiles layered on top.
|
# tools, no GUI-adjacent utilities — those belong in profiles layered on top.
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
|
site_config,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -83,7 +84,7 @@
|
|||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
user = {
|
user = {
|
||||||
name = "Simon Gardling";
|
name = "Simon Gardling";
|
||||||
email = "titaniumtown@proton.me";
|
email = site_config.contact_email;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -68,19 +68,19 @@ in
|
|||||||
"element.envs.net"
|
"element.envs.net"
|
||||||
"mail.proton.me"
|
"mail.proton.me"
|
||||||
"mail.google.com"
|
"mail.google.com"
|
||||||
"www.gardling.com"
|
"www.sigkill.computer"
|
||||||
"projects.fivethirtyeight.com"
|
"projects.fivethirtyeight.com"
|
||||||
"secure.bankofamerica.com"
|
"secure.bankofamerica.com"
|
||||||
"billpay-ui.bankofamerica.com"
|
"billpay-ui.bankofamerica.com"
|
||||||
"plus.pearson.com"
|
"plus.pearson.com"
|
||||||
"immich.gardling.com"
|
"immich.sigkill.computer"
|
||||||
"huggingface.co"
|
"huggingface.co"
|
||||||
"session.masteringphysics.com"
|
"session.masteringphysics.com"
|
||||||
"brainly.com"
|
"brainly.com"
|
||||||
"www.270towin.com"
|
"www.270towin.com"
|
||||||
"phet.colorado.edu"
|
"phet.colorado.edu"
|
||||||
"8042-1.portal.athenahealth.com"
|
"8042-1.portal.athenahealth.com"
|
||||||
"torrent.gardling.com"
|
"torrent.sigkill.computer"
|
||||||
"nssb-p.adm.fit.edu"
|
"nssb-p.adm.fit.edu"
|
||||||
"mail.openbenchmarking.org"
|
"mail.openbenchmarking.org"
|
||||||
"moneroocean.stream"
|
"moneroocean.stream"
|
||||||
@@ -89,11 +89,11 @@ in
|
|||||||
"chat.deepseek.com"
|
"chat.deepseek.com"
|
||||||
"n21.ultipro.com"
|
"n21.ultipro.com"
|
||||||
"www.egaroucid.nyanyan.dev"
|
"www.egaroucid.nyanyan.dev"
|
||||||
"bitmagnet.gardling.com"
|
"bitmagnet.sigkill.computer"
|
||||||
"frame.work"
|
"frame.work"
|
||||||
"www.altcancer.net"
|
"www.altcancer.net"
|
||||||
"jenkins.jpenilla.xyz"
|
"jenkins.jpenilla.xyz"
|
||||||
"soulseek.gardling.com"
|
"soulseek.sigkill.computer"
|
||||||
"discord.com"
|
"discord.com"
|
||||||
"www.lufthansa.com"
|
"www.lufthansa.com"
|
||||||
"surveys.hyundaicx.com"
|
"surveys.hyundaicx.com"
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
hostname,
|
hostname,
|
||||||
username,
|
username,
|
||||||
eth_interface,
|
eth_interface,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
options,
|
options,
|
||||||
...
|
...
|
||||||
@@ -79,16 +80,22 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
# Hosts entries for CI/CD deploy targets
|
# Hosts entries for CI/CD deploy targets
|
||||||
networking.hosts."192.168.1.50" = [ "server-public" ];
|
networking.hosts.${site_config.hosts.muffin.ip} = [ site_config.hosts.muffin.alias ];
|
||||||
networking.hosts."192.168.1.223" = [ "desktop" ];
|
networking.hosts.${site_config.hosts.yarn.ip} = [ site_config.hosts.yarn.alias ];
|
||||||
|
|
||||||
# SSH known_hosts for CI runner (pinned host keys)
|
# SSH known_hosts for CI runner (pinned host keys). All four names resolve to
|
||||||
environment.etc."ci-known-hosts".text = ''
|
# the same muffin host and therefore serve the same host key.
|
||||||
server-public ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMjgaMnE+zS7tL+m5E7gh9Q9U1zurLdmU0qcmEmaucu
|
environment.etc."ci-known-hosts".text =
|
||||||
192.168.1.50 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMjgaMnE+zS7tL+m5E7gh9Q9U1zurLdmU0qcmEmaucu
|
let
|
||||||
git.sigkill.computer ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMjgaMnE+zS7tL+m5E7gh9Q9U1zurLdmU0qcmEmaucu
|
key = site_config.hosts.muffin.ssh_host_key;
|
||||||
git.gardling.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMjgaMnE+zS7tL+m5E7gh9Q9U1zurLdmU0qcmEmaucu
|
names = [
|
||||||
'';
|
site_config.hosts.muffin.alias
|
||||||
|
site_config.hosts.muffin.ip
|
||||||
|
"git.${site_config.domain}"
|
||||||
|
"git.${site_config.old_domain}"
|
||||||
|
];
|
||||||
|
in
|
||||||
|
lib.concatMapStrings (n: "${n} ${key}\n") names;
|
||||||
|
|
||||||
services.deployGuard.enable = true;
|
services.deployGuard.enable = true;
|
||||||
|
|
||||||
@@ -149,9 +156,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Set your time zone.
|
|
||||||
time.timeZone = "America/New_York";
|
|
||||||
|
|
||||||
hardware.graphics = {
|
hardware.graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
@@ -183,10 +187,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
nameservers = [
|
nameservers = site_config.dns_servers;
|
||||||
"1.1.1.1"
|
|
||||||
"9.9.9.9"
|
|
||||||
];
|
|
||||||
|
|
||||||
hostName = hostname;
|
hostName = hostname;
|
||||||
hostId = "0f712d56";
|
hostId = "0f712d56";
|
||||||
@@ -200,8 +201,7 @@
|
|||||||
interfaces.${eth_interface} = {
|
interfaces.${eth_interface} = {
|
||||||
ipv4.addresses = [
|
ipv4.addresses = [
|
||||||
{
|
{
|
||||||
address = "192.168.1.50";
|
address = site_config.hosts.muffin.ip;
|
||||||
# address = "10.1.1.102";
|
|
||||||
prefixLength = 24;
|
prefixLength = 24;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@@ -213,8 +213,7 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
defaultGateway = {
|
defaultGateway = {
|
||||||
#address = "10.1.1.1";
|
address = site_config.lan.gateway;
|
||||||
address = "192.168.1.1";
|
|
||||||
interface = eth_interface;
|
interface = eth_interface;
|
||||||
};
|
};
|
||||||
# TODO! fix this
|
# TODO! fix this
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
{ site_config }:
|
||||||
rec {
|
rec {
|
||||||
zpool_ssds = "tank";
|
zpool_ssds = "tank";
|
||||||
zpool_hdds = "hdds";
|
zpool_hdds = "hdds";
|
||||||
@@ -206,15 +207,9 @@ rec {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
https = {
|
|
||||||
certs = services_dir + "/http_certs";
|
|
||||||
domain = "sigkill.computer";
|
|
||||||
old_domain = "gardling.com"; # Redirect traffic from old domain
|
|
||||||
};
|
|
||||||
|
|
||||||
gitea = {
|
gitea = {
|
||||||
dir = services_dir + "/gitea";
|
dir = services_dir + "/gitea";
|
||||||
domain = "git.${https.domain}";
|
domain = "git.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
postgres = {
|
postgres = {
|
||||||
@@ -278,19 +273,19 @@ rec {
|
|||||||
|
|
||||||
matrix = {
|
matrix = {
|
||||||
dataDir = "/var/lib/continuwuity";
|
dataDir = "/var/lib/continuwuity";
|
||||||
domain = "matrix.${https.domain}";
|
domain = "matrix.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
ntfy = {
|
ntfy = {
|
||||||
domain = "ntfy.${https.domain}";
|
domain = "ntfy.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
mollysocket = {
|
mollysocket = {
|
||||||
domain = "mollysocket.${https.domain}";
|
domain = "mollysocket.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
livekit = {
|
livekit = {
|
||||||
domain = "livekit.${https.domain}";
|
domain = "livekit.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
syncthing = {
|
syncthing = {
|
||||||
@@ -324,12 +319,12 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
firefox_syncserver = {
|
firefox_syncserver = {
|
||||||
domain = "firefox-sync.${https.domain}";
|
domain = "firefox-sync.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
grafana = {
|
grafana = {
|
||||||
dir = services_dir + "/grafana";
|
dir = services_dir + "/grafana";
|
||||||
domain = "grafana.${https.domain}";
|
domain = "grafana.${site_config.domain}";
|
||||||
};
|
};
|
||||||
|
|
||||||
trilium = {
|
trilium = {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
lib,
|
lib,
|
||||||
username,
|
username,
|
||||||
inputs,
|
inputs,
|
||||||
|
site_config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
@@ -43,8 +44,8 @@
|
|||||||
};
|
};
|
||||||
ipv4 = {
|
ipv4 = {
|
||||||
method = "manual";
|
method = "manual";
|
||||||
address1 = "192.168.1.223/24,192.168.1.1";
|
address1 = "${site_config.hosts.yarn.ip}/24,${site_config.lan.gateway}";
|
||||||
dns = "1.1.1.1;9.9.9.9;";
|
dns = lib.concatMapStrings (n: "${n};") site_config.dns_servers;
|
||||||
};
|
};
|
||||||
ipv6.method = "disabled";
|
ipv6.method = "disabled";
|
||||||
};
|
};
|
||||||
@@ -59,12 +60,12 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
users.users.${username}.openssh.authorizedKeys.keys = [
|
users.users.${username}.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4jL6gYOunUlUtPvGdML0cpbKSsPNqQ1jit4E7U1RyH" # laptop
|
site_config.ssh_keys.laptop
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.root.openssh.authorizedKeys.keys = [
|
users.users.root.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4jL6gYOunUlUtPvGdML0cpbKSsPNqQ1jit4E7U1RyH" # laptop
|
site_config.ssh_keys.laptop
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC5ZYN6idL/w/mUIfPOH1i+Q/SQXuzAMQUEuWpipx1Pc ci-deploy@muffin"
|
site_config.ssh_keys.ci_deploy
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
@@ -99,7 +100,7 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
STORE_PATH=$(curl -sf --max-time 30 "https://nix-cache.sigkill.computer/deploy/yarn" || true)
|
STORE_PATH=$(curl -sf --max-time 30 "${site_config.binary_cache.url}/deploy/yarn" || true)
|
||||||
if [ -z "$STORE_PATH" ]; then
|
if [ -z "$STORE_PATH" ]; then
|
||||||
echo "server unreachable"
|
echo "server unreachable"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -152,7 +153,7 @@
|
|||||||
(
|
(
|
||||||
final: prev:
|
final: prev:
|
||||||
let
|
let
|
||||||
deploy-url = "https://nix-cache.sigkill.computer/deploy/yarn";
|
deploy-url = "${site_config.binary_cache.url}/deploy/yarn";
|
||||||
|
|
||||||
steamos-update-script = final.writeShellScript "steamos-update" ''
|
steamos-update-script = final.writeShellScript "steamos-update" ''
|
||||||
export PATH=${
|
export PATH=${
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
inputs,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
service_configs,
|
service_configs,
|
||||||
|
site_config,
|
||||||
lib ? inputs.nixpkgs-stable.lib,
|
lib ? inputs.nixpkgs-stable.lib,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -195,7 +196,7 @@ lib.extend (
|
|||||||
assert (subdomain != null) != (domain != null);
|
assert (subdomain != null) != (domain != null);
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
let
|
let
|
||||||
vhostDomain = if domain != null then domain else "${subdomain}.${service_configs.https.domain}";
|
vhostDomain = if domain != null then domain else "${subdomain}.${site_config.domain}";
|
||||||
upstream =
|
upstream =
|
||||||
if vpn then
|
if vpn then
|
||||||
"${config.vpnNamespaces.wg.namespaceAddress}:${builtins.toString port}"
|
"${config.vpnNamespaces.wg.namespaceAddress}:${builtins.toString port}"
|
||||||
|
|||||||
@@ -2,10 +2,15 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
username,
|
username,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
# Shared timezone. Plain priority so it wins against srvos's mkDefault "UTC";
|
||||||
|
# mreow overrides via lib.mkForce when travelling.
|
||||||
|
time.timeZone = site_config.timezone;
|
||||||
|
|
||||||
# Common Nix daemon settings. Host-specific overrides (binary cache substituters,
|
# Common Nix daemon settings. Host-specific overrides (binary cache substituters,
|
||||||
# gc retention) live in the host's default.nix.
|
# gc retention) live in the host's default.nix.
|
||||||
nix = {
|
nix = {
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
lib,
|
lib,
|
||||||
username,
|
username,
|
||||||
inputs,
|
inputs,
|
||||||
|
site_config,
|
||||||
niri-package,
|
niri-package,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -64,11 +65,11 @@
|
|||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
# Desktop-specific Nix cache — muffin serves it, desktops consume.
|
# Desktop-specific Nix cache — muffin serves it, desktops consume.
|
||||||
# Base nix settings (optimise, gc, experimental-features) come from common-nix.nix.
|
# Base nix settings (optimise, gc, experimental-features) come from common.nix.
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = [ "https://nix-cache.sigkill.computer" ];
|
substituters = [ site_config.binary_cache.url ];
|
||||||
trusted-public-keys = [
|
trusted-public-keys = [
|
||||||
"nix-cache.sigkill.computer-1:ONtQC9gUjL+2yNgMWB68NudPySXhyzJ7I3ra56/NPgk="
|
site_config.binary_cache.public_key
|
||||||
];
|
];
|
||||||
netrc-file = "${../secrets/desktop/nix-cache-netrc}";
|
netrc-file = "${../secrets/desktop/nix-cache-netrc}";
|
||||||
};
|
};
|
||||||
@@ -337,12 +338,6 @@
|
|||||||
"msr"
|
"msr"
|
||||||
"btusb"
|
"btusb"
|
||||||
];
|
];
|
||||||
|
|
||||||
kernelParams = [
|
|
||||||
# 1gb huge pages
|
|
||||||
"hugepagesz=1G"
|
|
||||||
"hugepages=3"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
@@ -381,9 +376,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# EST
|
|
||||||
time.timeZone = "America/New_York";
|
|
||||||
|
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ hostname, ... }:
|
{ hostname, site_config, ... }:
|
||||||
{
|
{
|
||||||
# speed up boot times (by about three seconds)
|
# speed up boot times (by about three seconds)
|
||||||
systemd.services.NetworkManager-wait-online.enable = false;
|
systemd.services.NetworkManager-wait-online.enable = false;
|
||||||
@@ -9,10 +9,7 @@
|
|||||||
networkmanager = {
|
networkmanager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
appendNameservers = [
|
appendNameservers = site_config.dns_servers;
|
||||||
"1.1.1.1"
|
|
||||||
"9.9.9.9"
|
|
||||||
];
|
|
||||||
|
|
||||||
wifi = {
|
wifi = {
|
||||||
scanRandMacAddress = true;
|
scanRandMacAddress = true;
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -25,7 +26,7 @@
|
|||||||
configurePostgres = true;
|
configurePostgres = true;
|
||||||
config = {
|
config = {
|
||||||
# Refer to https://github.com/dani-garcia/vaultwarden/blob/main/.env.template
|
# Refer to https://github.com/dani-garcia/vaultwarden/blob/main/.env.template
|
||||||
DOMAIN = "https://bitwarden.${service_configs.https.domain}";
|
DOMAIN = "https://bitwarden.${site_config.domain}";
|
||||||
SIGNUPS_ALLOWED = false;
|
SIGNUPS_ALLOWED = false;
|
||||||
|
|
||||||
ROCKET_ADDRESS = "127.0.0.1";
|
ROCKET_ADDRESS = "127.0.0.1";
|
||||||
@@ -34,7 +35,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.caddy.virtualHosts."bitwarden.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."bitwarden.${site_config.domain}".extraConfig = ''
|
||||||
encode zstd gzip
|
encode zstd gzip
|
||||||
|
|
||||||
reverse_proxy :${toString config.services.vaultwarden.config.ROCKET_PORT} {
|
reverse_proxy :${toString config.services.vaultwarden.config.ROCKET_PORT} {
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
@@ -42,8 +43,8 @@ let
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
newDomain = service_configs.https.domain;
|
newDomain = site_config.domain;
|
||||||
oldDomain = service_configs.https.old_domain;
|
oldDomain = site_config.old_domain;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
@@ -54,7 +55,7 @@ in
|
|||||||
|
|
||||||
services.caddy = {
|
services.caddy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
email = "titaniumtown@proton.me";
|
email = site_config.contact_email;
|
||||||
|
|
||||||
# Build with Njalla DNS provider for DNS-01 ACME challenges (wildcard certs)
|
# Build with Njalla DNS provider for DNS-01 ACME challenges (wildcard certs)
|
||||||
package = pkgs.caddy.withPlugins {
|
package = pkgs.caddy.withPlugins {
|
||||||
@@ -146,8 +147,9 @@ in
|
|||||||
# defaults: maxretry=5, findtime=10m, bantime=10m
|
# defaults: maxretry=5, findtime=10m, bantime=10m
|
||||||
|
|
||||||
# Ignore local network IPs - NAT hairpinning causes all LAN traffic to
|
# Ignore local network IPs - NAT hairpinning causes all LAN traffic to
|
||||||
# appear from the router IP (192.168.1.1). Banning it blocks all internal access.
|
# appear from the router IP (site_config.lan.gateway). Banning it
|
||||||
ignoreip = "127.0.0.1/8 ::1 192.168.1.0/24";
|
# blocks all internal access.
|
||||||
|
ignoreip = "127.0.0.1/8 ::1 ${site_config.lan.cidr}";
|
||||||
};
|
};
|
||||||
filter.Definition = {
|
filter.Definition = {
|
||||||
# Only match 401s where an Authorization header was actually sent.
|
# Only match 401s where an Authorization header was actually sent.
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
@@ -32,7 +33,7 @@ let
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.caddy.virtualHosts."senior-project.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."senior-project.${site_config.domain}".extraConfig = ''
|
||||||
root * ${hugoWebsite}
|
root * ${hugoWebsite}
|
||||||
file_server browse
|
file_server browse
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
inputs,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
@@ -9,7 +10,7 @@ let
|
|||||||
inputs.ytbn-graphing-software.packages.${pkgs.stdenv.targetPlatform.system}.web;
|
inputs.ytbn-graphing-software.packages.${pkgs.stdenv.targetPlatform.system}.web;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.caddy.virtualHosts."graphing.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."graphing.${site_config.domain}".extraConfig = ''
|
||||||
root * ${graphing-calculator}
|
root * ${graphing-calculator}
|
||||||
file_server browse
|
file_server browse
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -19,7 +20,7 @@
|
|||||||
|
|
||||||
# serve latest deploy store paths (unauthenticated — just a path string)
|
# serve latest deploy store paths (unauthenticated — just a path string)
|
||||||
# CI writes to /var/lib/nix-deploy/<hostname> after building
|
# CI writes to /var/lib/nix-deploy/<hostname> after building
|
||||||
services.caddy.virtualHosts."nix-cache.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."nix-cache.${site_config.domain}".extraConfig = ''
|
||||||
handle_path /deploy/* {
|
handle_path /deploy/* {
|
||||||
root * /var/lib/nix-deploy
|
root * /var/lib/nix-deploy
|
||||||
file_server
|
file_server
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
config,
|
config,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
@@ -24,7 +25,7 @@
|
|||||||
inherit (service_configs.jellyfin) dataDir cacheDir;
|
inherit (service_configs.jellyfin) dataDir cacheDir;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.caddy.virtualHosts."jellyfin.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."jellyfin.${site_config.domain}".extraConfig = ''
|
||||||
reverse_proxy :${builtins.toString service_configs.ports.private.jellyfin.port} {
|
reverse_proxy :${builtins.toString service_configs.ports.private.jellyfin.port} {
|
||||||
# Disable response buffering for streaming. Caddy's default partial
|
# Disable response buffering for streaming. Caddy's default partial
|
||||||
# buffering delays fMP4-HLS segments and direct-play responses where
|
# buffering delays fMP4-HLS segments and direct-play responses where
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
config,
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
@@ -24,7 +25,7 @@ in
|
|||||||
# "Invalid API Key" warning has no client IP, and behind Caddy the
|
# "Invalid API Key" warning has no client IP, and behind Caddy the
|
||||||
# llama-server access log only sees 127.0.0.1. Caddy's JSON log has
|
# llama-server access log only sees 127.0.0.1. Caddy's JSON log has
|
||||||
# the real client IP via request.remote_ip.
|
# the real client IP via request.remote_ip.
|
||||||
services.caddy.virtualHosts."llm.${service_configs.https.domain}".extraConfig = ''
|
services.caddy.virtualHosts."llm.${site_config.domain}".extraConfig = ''
|
||||||
log {
|
log {
|
||||||
output file /var/log/caddy/access-llama-cpp.log
|
output file /var/log/caddy/access-llama-cpp.log
|
||||||
format json
|
format json
|
||||||
@@ -52,8 +53,8 @@ in
|
|||||||
# defaults: maxretry=5, findtime=10m, bantime=10m
|
# defaults: maxretry=5, findtime=10m, bantime=10m
|
||||||
|
|
||||||
# NAT hairpinning sends LAN traffic via the router IP. Don't ban
|
# NAT hairpinning sends LAN traffic via the router IP. Don't ban
|
||||||
# 192.168.1.0/24 or we lock ourselves out.
|
# our LAN or we lock ourselves out.
|
||||||
ignoreip = "127.0.0.1/8 ::1 192.168.1.0/24";
|
ignoreip = "127.0.0.1/8 ::1 ${site_config.lan.cidr}";
|
||||||
};
|
};
|
||||||
filter.Definition = {
|
filter.Definition = {
|
||||||
failregex = ''^.*"remote_ip":"<HOST>".*"status":401.*$'';
|
failregex = ''^.*"remote_ip":"<HOST>".*"status":401.*$'';
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
services.coturn = {
|
services.coturn = {
|
||||||
enable = true;
|
enable = true;
|
||||||
realm = service_configs.https.domain;
|
realm = site_config.domain;
|
||||||
use-auth-secret = true;
|
use-auth-secret = true;
|
||||||
static-auth-secret-file = config.age.secrets.coturn-auth-secret.path;
|
static-auth-secret-file = config.age.secrets.coturn-auth-secret.path;
|
||||||
listening-port = service_configs.ports.public.coturn.port;
|
listening-port = service_configs.ports.public.coturn.port;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
@@ -23,7 +24,7 @@
|
|||||||
|
|
||||||
settings.global = {
|
settings.global = {
|
||||||
port = [ service_configs.ports.private.matrix.port ];
|
port = [ service_configs.ports.private.matrix.port ];
|
||||||
server_name = service_configs.https.domain;
|
server_name = site_config.domain;
|
||||||
allow_registration = true;
|
allow_registration = true;
|
||||||
registration_token_file = config.age.secrets.matrix-reg-token.path;
|
registration_token_file = config.age.secrets.matrix-reg-token.path;
|
||||||
|
|
||||||
@@ -43,14 +44,14 @@
|
|||||||
# TURN server config (coturn)
|
# TURN server config (coturn)
|
||||||
turn_secret_file = config.age.secrets.matrix-turn-secret.path;
|
turn_secret_file = config.age.secrets.matrix-turn-secret.path;
|
||||||
turn_uris = [
|
turn_uris = [
|
||||||
"turn:${service_configs.https.domain}?transport=udp"
|
"turn:${site_config.domain}?transport=udp"
|
||||||
"turn:${service_configs.https.domain}?transport=tcp"
|
"turn:${site_config.domain}?transport=tcp"
|
||||||
];
|
];
|
||||||
turn_ttl = 86400;
|
turn_ttl = 86400;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.caddy.virtualHosts.${service_configs.https.domain}.extraConfig = lib.mkBefore ''
|
services.caddy.virtualHosts.${site_config.domain}.extraConfig = lib.mkBefore ''
|
||||||
header /.well-known/matrix/* Content-Type application/json
|
header /.well-known/matrix/* Content-Type application/json
|
||||||
header /.well-known/matrix/* Access-Control-Allow-Origin *
|
header /.well-known/matrix/* Access-Control-Allow-Origin *
|
||||||
respond /.well-known/matrix/server `{"m.server": "${service_configs.matrix.domain}:${builtins.toString service_configs.ports.public.https.port}"}`
|
respond /.well-known/matrix/server `{"m.server": "${service_configs.matrix.domain}:${builtins.toString service_configs.ports.public.https.port}"}`
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
service_configs,
|
service_configs,
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
@@ -177,7 +178,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
services.caddy.virtualHosts = lib.mkIf (config.services.caddy.enable) {
|
services.caddy.virtualHosts = lib.mkIf (config.services.caddy.enable) {
|
||||||
"map.${service_configs.https.domain}".extraConfig = ''
|
"map.${site_config.domain}".extraConfig = ''
|
||||||
root * ${service_configs.minecraft.parent_dir}/${service_configs.minecraft.server_name}/squaremap/web
|
root * ${service_configs.minecraft.parent_dir}/${service_configs.minecraft.server_name}/squaremap/web
|
||||||
file_server browse
|
file_server browse
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
site_config,
|
||||||
username,
|
username,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@@ -25,14 +26,14 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
users.users.${username}.openssh.authorizedKeys.keys = [
|
users.users.${username}.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4jL6gYOunUlUtPvGdML0cpbKSsPNqQ1jit4E7U1RyH" # laptop
|
site_config.ssh_keys.laptop
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBJjT5QZ3zRDb+V6Em20EYpSEgPW5e/U+06uQGJdraxi" # desktop
|
site_config.ssh_keys.desktop
|
||||||
];
|
];
|
||||||
|
|
||||||
# used for deploying configs to server
|
# used for deploying configs to server
|
||||||
users.users.root.openssh.authorizedKeys.keys =
|
users.users.root.openssh.authorizedKeys.keys =
|
||||||
config.users.users.${username}.openssh.authorizedKeys.keys
|
config.users.users.${username}.openssh.authorizedKeys.keys
|
||||||
++ [
|
++ [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC5ZYN6idL/w/mUIfPOH1i+Q/SQXuzAMQUEuWpipx1Pc ci-deploy@muffin"
|
site_config.ssh_keys.ci_deploy
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
63
site-config.nix
Normal file
63
site-config.nix
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# Site-wide constants shared across all three hosts and home-manager profiles.
|
||||||
|
#
|
||||||
|
# This file is pure data — no package refs, no module config. Import it from
|
||||||
|
# flake.nix and pass it as the `site_config` specialArg (and extraSpecialArg for
|
||||||
|
# home-manager). Callers read values; they do not set them.
|
||||||
|
#
|
||||||
|
# Adding a value: only add if it's used by ≥2 hosts/modules. Host-specific
|
||||||
|
# single-use values stay in the host's default.nix. Muffin-only service
|
||||||
|
# infrastructure (ports, zpool names, hugepage budgets) stays in
|
||||||
|
# hosts/muffin/service-configs.nix.
|
||||||
|
rec {
|
||||||
|
# --- Identity ---
|
||||||
|
domain = "sigkill.computer";
|
||||||
|
old_domain = "gardling.com"; # served by muffin via permanent redirect (services/caddy/caddy.nix)
|
||||||
|
contact_email = "titaniumtown@proton.me";
|
||||||
|
|
||||||
|
# All three hosts run on the same timezone. Override per-host via
|
||||||
|
# lib.mkForce when travelling (see hosts/mreow/default.nix for the pattern).
|
||||||
|
timezone = "America/New_York";
|
||||||
|
|
||||||
|
# --- Binary cache (muffin serves via harmonia, desktops consume) ---
|
||||||
|
binary_cache = {
|
||||||
|
url = "https://nix-cache.${domain}";
|
||||||
|
public_key = "nix-cache.${domain}-1:ONtQC9gUjL+2yNgMWB68NudPySXhyzJ7I3ra56/NPgk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# --- LAN topology ---
|
||||||
|
dns_servers = [
|
||||||
|
"1.1.1.1"
|
||||||
|
"9.9.9.9"
|
||||||
|
];
|
||||||
|
|
||||||
|
lan = {
|
||||||
|
cidr = "192.168.1.0/24";
|
||||||
|
gateway = "192.168.1.1";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Per-host network info. mreow is laptop-on-DHCP so it has no entry.
|
||||||
|
hosts = {
|
||||||
|
muffin = {
|
||||||
|
ip = "192.168.1.50";
|
||||||
|
# Canonical alias used by deploy.sh, CI workflows, and borg backup target.
|
||||||
|
# Resolves via /etc/hosts on muffin and the desktops' NetworkManager DNS.
|
||||||
|
alias = "server-public";
|
||||||
|
# SSH host key — same key is served for every alias muffin answers to
|
||||||
|
# (server-public, the IP, git.${domain}, git.${old_domain}).
|
||||||
|
ssh_host_key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMjgaMnE+zS7tL+m5E7gh9Q9U1zurLdmU0qcmEmaucu";
|
||||||
|
};
|
||||||
|
yarn = {
|
||||||
|
ip = "192.168.1.223";
|
||||||
|
alias = "desktop";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# --- SSH pubkeys ---
|
||||||
|
# One line per key, referenced by name from services/ssh.nix (muffin) and
|
||||||
|
# hosts/yarn/default.nix. Rotating a key means changing it here, nowhere else.
|
||||||
|
ssh_keys = {
|
||||||
|
laptop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO4jL6gYOunUlUtPvGdML0cpbKSsPNqQ1jit4E7U1RyH";
|
||||||
|
desktop = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBJjT5QZ3zRDb+V6Em20EYpSEgPW5e/U+06uQGJdraxi";
|
||||||
|
ci_deploy = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC5ZYN6idL/w/mUIfPOH1i+Q/SQXuzAMQUEuWpipx1Pc ci-deploy@muffin";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -12,10 +12,10 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../hosts/muffin/service-configs.nix { site_config = baseSiteConfig; };
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
https.domain = "test.local";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
alwaysOk = pkgs.writeShellApplication {
|
alwaysOk = pkgs.writeShellApplication {
|
||||||
|
|||||||
@@ -5,7 +5,10 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix {
|
||||||
|
site_config = baseSiteConfig;
|
||||||
|
};
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
gitea = {
|
gitea = {
|
||||||
|
|||||||
@@ -5,10 +5,12 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix {
|
||||||
|
site_config = baseSiteConfig;
|
||||||
|
};
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
https.domain = "test.local";
|
|
||||||
ports.private.immich = {
|
ports.private.immich = {
|
||||||
port = 2283;
|
port = 2283;
|
||||||
proto = "tcp";
|
proto = "tcp";
|
||||||
|
|||||||
@@ -5,10 +5,12 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix {
|
||||||
|
site_config = baseSiteConfig;
|
||||||
|
};
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
https.domain = "test.local";
|
|
||||||
jellyfin = {
|
jellyfin = {
|
||||||
dataDir = "/var/lib/jellyfin";
|
dataDir = "/var/lib/jellyfin";
|
||||||
cacheDir = "/var/cache/jellyfin";
|
cacheDir = "/var/cache/jellyfin";
|
||||||
@@ -33,6 +35,7 @@ let
|
|||||||
(import ../../services/jellyfin/jellyfin.nix {
|
(import ../../services/jellyfin/jellyfin.nix {
|
||||||
inherit config pkgs;
|
inherit config pkgs;
|
||||||
lib = testLib;
|
lib = testLib;
|
||||||
|
site_config = baseSiteConfig;
|
||||||
service_configs = testServiceConfigs;
|
service_configs = testServiceConfigs;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -5,10 +5,12 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../../hosts/muffin/service-configs.nix {
|
||||||
|
site_config = baseSiteConfig;
|
||||||
|
};
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
https.domain = "test.local";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
testLib = lib.extend (
|
testLib = lib.extend (
|
||||||
@@ -28,6 +30,7 @@ let
|
|||||||
(import ../../services/bitwarden.nix {
|
(import ../../services/bitwarden.nix {
|
||||||
inherit config pkgs;
|
inherit config pkgs;
|
||||||
lib = testLib;
|
lib = testLib;
|
||||||
|
site_config = baseSiteConfig;
|
||||||
service_configs = testServiceConfigs;
|
service_configs = testServiceConfigs;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
baseServiceConfigs = import ../hosts/muffin/service-configs.nix;
|
baseSiteConfig = import ../site-config.nix;
|
||||||
|
baseServiceConfigs = import ../hosts/muffin/service-configs.nix { site_config = baseSiteConfig; };
|
||||||
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
testServiceConfigs = lib.recursiveUpdate baseServiceConfigs {
|
||||||
zpool_ssds = "";
|
zpool_ssds = "";
|
||||||
https.domain = "test.local";
|
|
||||||
minecraft.parent_dir = "/var/lib/minecraft";
|
minecraft.parent_dir = "/var/lib/minecraft";
|
||||||
minecraft.memory = rec {
|
minecraft.memory = rec {
|
||||||
heap_size_m = 1000;
|
heap_size_m = 1000;
|
||||||
@@ -31,6 +31,7 @@ testPkgs.testers.runNixOSTest {
|
|||||||
|
|
||||||
node.specialArgs = {
|
node.specialArgs = {
|
||||||
inherit inputs lib;
|
inherit inputs lib;
|
||||||
|
site_config = baseSiteConfig;
|
||||||
service_configs = testServiceConfigs;
|
service_configs = testServiceConfigs;
|
||||||
username = "testuser";
|
username = "testuser";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user