diff options
| author | Kleidi Bujari <mail@4kb.net> | 2026-02-16 13:49:39 -0800 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2026-02-16 13:49:39 -0800 |
| commit | 53d8faf21941e931910c8a244028f145be497955 (patch) | |
| tree | 63f06e189db76887e5c1040d1f65c53444007154 /machines/iridium.nix | |
| parent | b938b34c769ef6960afa038bf7da377fbf4f2f7c (diff) | |
| download | depot-53d8faf21941e931910c8a244028f145be497955.tar.gz depot-53d8faf21941e931910c8a244028f145be497955.tar.bz2 depot-53d8faf21941e931910c8a244028f145be497955.zip | |
update iridium in local network
Diffstat (limited to 'machines/iridium.nix')
| -rw-r--r-- | machines/iridium.nix | 19 |
1 files changed, 11 insertions, 8 deletions
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; |
