aboutsummaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-27 08:55:26 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-12-27 08:55:26 -0600
commitb900e797ea557030edb8350bbf732c061f23c7a0 (patch)
treee0c393fd20edd826f4276a0b24205e3664739e6b /hosts
parent6f9b285bdb935fbab99978307034c7458ddc9d09 (diff)
module for setting a static ip with systemd-networkd
Diffstat (limited to 'hosts')
-rw-r--r--hosts/ganymede/config.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix
index 2a0293c..8e751eb 100644
--- a/hosts/ganymede/config.nix
+++ b/hosts/ganymede/config.nix
@@ -17,7 +17,13 @@
services = {
networking = {
enable = true;
- iwd.enable = true;
+ static = {
+ enable = true;
+ ssid = "williams";
+ pskFile = "williams-psk";
+ ip = "192.168.50.2";
+ gateway = "192.168.50.1";
+ };
tailscale.enable = true;
sshd.enable = true;
};