Remove deprecated file.

This commit is contained in:
2025-10-24 15:06:18 +01:00
parent f918ff5df2
commit 0b51b44856
2 changed files with 0 additions and 9 deletions

View File

@@ -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

View File

@@ -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
];
}