From 53d8faf21941e931910c8a244028f145be497955 Mon Sep 17 00:00:00 2001 From: Kleidi Bujari Date: Mon, 16 Feb 2026 13:49:39 -0800 Subject: update iridium in local network --- machines/iridium.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'machines/iridium.nix') diff --git a/machines/iridium.nix b/machines/iridium.nix index 03727d7..5f30c81 100644 --- a/machines/iridium.nix +++ b/machines/iridium.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ inputs, flake, ... }: let inherit (inputs.nixos-hardware.nixosModules) common-cpu-intel @@ -10,20 +10,23 @@ in system.stateVersion = "25.05"; networking.hostName = "iridium"; - imports = [ common-cpu-intel common-gpu-intel ]; + imports = [ + common-cpu-intel + common-gpu-intel + flake.outputs.nixosModules.network + ]; + + depot.net = { + sshd.enable = true; + sshd.publish = true; + }; xnet = { disk = { enable = true; device = "/dev/nvme0n1"; }; - net = { - sshd.enable = true; - interface = "enp1s0"; - join = [ "plaza" "kubenet" ]; - }; nginx.enable = true; - monitoring.hostGrafana = true; gitServer = { enable = true; gitweb.enable = true; -- cgit v1.3.1