Files
alo-cluster/common/minimal-node.nix
2025-10-20 22:27:58 +01:00

13 lines
328 B
Nix

{ pkgs, ... }:
{
# Minimal base configuration for all NixOS systems
# Provides: SSH access, user management, boot, impermanence
# Note: unattended-encryption is NOT included by default - add it explicitly where needed
imports = [
./impermanence.nix
./sshd.nix
./user-ppetru.nix
./systemd-boot.nix
];
}