mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-30 11:04:19 +00:00
16 lines
280 B
Nix
16 lines
280 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# Hardware Scan
|
|
./hardware-configuration.nix
|
|
|
|
# Host Groups
|
|
../../modules/host-groups/cluster.nix
|
|
|
|
# Application Groups
|
|
../../modules/application-groups/k3s-primary.nix
|
|
];
|
|
|
|
networking.hostName = "cap-clust-01";
|
|
}
|