Cleanup with LSP guidance

This commit is contained in:
2026-02-17 15:21:54 -07:00
parent 8ef20405ba
commit 432d5df195
17 changed files with 71 additions and 53 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ ... }:
let
settings = import ../settings.nix;
@@ -17,19 +17,27 @@ in
# Allowed ports
allowedTCPPorts = [
# SyncThing
8384 22000
8384
22000
];
allowedUDPPorts = [
# SyncThing
22000 21027
22000
21027
];
};
networking.nameservers = [ "1.1.1.1" "9.9.9.9" ];
networking.nameservers = [
"1.1.1.1"
"9.9.9.9"
];
services.resolved = {
enable = true;
dnsovertls = "opportunistic";
fallbackDns = [ "1.0.0.1" "149.112.112.112" ];
fallbackDns = [
"1.0.0.1"
"149.112.112.112"
];
};
}