From 0b51b44856bc1a0a74643885af60327716ebdc1c Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 24 Oct 2025 15:06:18 +0100 Subject: [PATCH] Remove deprecated file. --- README.md | 1 - common/base-node.nix | 8 -------- 2 files changed, 9 deletions(-) delete mode 100644 common/base-node.nix diff --git a/README.md b/README.md index 1ecc354..f4a3bd1 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,6 @@ Each layer extends the previous one, inheriting all configurations. Hosts select │ ├── desktop-node.nix # Desktop layer: GUI environment │ ├── cloud-node.nix # Cloud VPS profile │ ├── compute-node.nix # Nomad worker profile -│ ├── base-node.nix # [DEPRECATED] Alias for cluster-node │ └── [feature modules] # Individual feature configs ├── hosts/ │ ├── c1/ # Compute node 1 diff --git a/common/base-node.nix b/common/base-node.nix deleted file mode 100644 index 003e920..0000000 --- a/common/base-node.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: -{ - # DEPRECATED: Use cluster-node.nix for cluster nodes or minimal-node.nix for minimal systems - # This file is kept for backward compatibility with existing configurations - imports = [ - ./cluster-node.nix - ]; -}