From 6294c719c3a924d79f0a3557ae3449f17c67c2aa Mon Sep 17 00:00:00 2001 From: Hermes-Neo Date: Sun, 28 Jun 2026 18:23:45 +0100 Subject: [PATCH] refactor blade: strip Colmena-specific args, make portable NixOS module --- hosts/blade/default.nix | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/hosts/blade/default.nix b/hosts/blade/default.nix index ef7fd80..a7d0f0e 100644 --- a/hosts/blade/default.nix +++ b/hosts/blade/default.nix @@ -1,30 +1,11 @@ +{ ... }: { - name, - nodes, - pkgs, - lib, - inputs, - ... -}: -{ - deployment = { - targetHost = "192.168.1.70"; - targetPort = 22; - targetUser = "phoenix"; - buildOnTarget = true; - keys.phoenix.keyFile = "/home/nixos/.ssh/id_ed25519.pub"; - tags = [ - "homelab" - ]; - }; - imports = [ ./hardware-configuration.nix - ../../modules/common.nix - ../../modules/common/incus.nix ./networking.nix ./users.nix ./power-plan.nix + ../../modules/common/incus.nix ]; networking.interfaces.eth0.wakeOnLan.enable = true;