aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-02-08 11:16:14 -0800
committerMark Nipper <nipsy@bitgnome.net>2026-02-08 11:16:14 -0800
commit2730b6d5c0e08cbb7dd31064184120c080fbe4b4 (patch)
tree30c4c014f2c83fa35406a2660c7de97c041ee541 /hosts
parentfee8d8a25724d89b2251307d664734c18109ad95 (diff)
downloadnix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar.gz
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar.bz2
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar.lz
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar.xz
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.tar.zst
nix-2730b6d5c0e08cbb7dd31064184120c080fbe4b4.zip
Switch to Ethernet @caladan
Diffstat (limited to 'hosts')
-rw-r--r--hosts/caladan/default.nix32
1 files changed, 16 insertions, 16 deletions
diff --git a/hosts/caladan/default.nix b/hosts/caladan/default.nix
index 18ad4d4..8e47960 100644
--- a/hosts/caladan/default.nix
+++ b/hosts/caladan/default.nix
@@ -4,7 +4,7 @@
kernel.sysctl = {
"kernel.hostname" = "caladan.bitgnome.net";
"kernel.split_lock_mitigate" = 0; # https://lwn.net/Articles/911219/
- "net.ipv4.tcp_congestion_control" = "reno";
+ #"net.ipv4.tcp_congestion_control" = "reno";
};
kernelPackages = pkgs.linuxPackages_6_18;
#kernelParams = [
@@ -101,12 +101,12 @@
networking = {
defaultGateway = {
address = "192.168.1.1";
- interface = "wlp15s0";
+ interface = "enp16s0";
};
hostId = "8981d1e5";
hostName = "caladan";
interfaces = {
- wlp15s0 = {
+ enp16s0 = {
ipv4.addresses = [
{ address = "192.168.1.4"; prefixLength = 24; }
];
@@ -118,15 +118,15 @@
"bitgnome.net"
];
useDHCP = false;
- wireless = {
- enable = true;
- networks = {
- "Crystal Palace" = {
- pskRaw = "ext:psk_crystal_palace";
- };
- };
- secretsFile = "${config.sops.secrets."wpa_supplicant".path}";
- };
+ #wireless = {
+ # enable = true;
+ # networks = {
+ # "Crystal Palace" = {
+ # pskRaw = "ext:psk_crystal_palace";
+ # };
+ # };
+ # secretsFile = "${config.sops.secrets."wpa_supplicant".path}";
+ #};
};
nixpkgs = {
@@ -185,10 +185,10 @@
"nftables/ssh" = {};
"nix-access-token-github" = {};
"ssh_config".path = "/root/.ssh/config";
- "wpa_supplicant" = {
- group = config.users.users.wpa_supplicant.group;
- owner = config.users.users.wpa_supplicant.name;
- };
+ #"wpa_supplicant" = {
+ # group = config.users.users.wpa_supplicant.group;
+ # owner = config.users.users.wpa_supplicant.name;
+ #};
};
};