Extract Shared NixOS Settings
NixOS switch mini-pc / switch (push) Successful in 14s
Deploy cloud-pc / deploy (push) Failing after 29s
NixOS switch cloud-pc / switch (push) Successful in 11s

This commit is contained in:
Dmitry
2026-05-30 17:25:18 +03:00
parent 2e0b494000
commit 54b4a23446
6 changed files with 28 additions and 66 deletions
+1 -17
View File
@@ -5,16 +5,11 @@
../../modules/base.nix
../../modules/docker.nix
../../modules/libvirtd.nix
../../modules/zerotier.nix
./firewall.nix
./hardware.nix
];
systemd.services.nix-daemon.environment = {
HTTPS_PROXY = "http://192.168.1.10:10172";
HTTP_PROXY = "http://192.168.1.10:10172";
NO_PROXY = "localhost,127.0.0.0/8,::1,192.168.1.0/24";
};
networking = {
hostName = "mini-pc";
useDHCP = false;
@@ -22,7 +17,6 @@
systemd.network = {
enable = true;
wait-online.anyInterface = true;
networks."10-lan" = {
matchConfig.Name = "en*";
networkConfig = {
@@ -41,16 +35,6 @@
fallbackDns = [ "1.1.1.1" "8.8.8.8" ];
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.zerotierone = {
enable = true;
joinNetworks = [
"743993800fa5a34c"
];
};
systemd.tmpfiles.rules = [
"d /opt/data/adguard 0755 ada users - -"
"d /opt/data/adguard/work 0755 ada users - -"