mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-31 11:34:18 +00:00
14 lines
208 B
Nix
14 lines
208 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# Hardware Scan
|
|
./hardware-configuration.nix
|
|
|
|
# Host Groups
|
|
../../modules/host-groups/apollo-2000.nix
|
|
|
|
];
|
|
|
|
networking.hostName = "cap-apollo-n02";
|
|
}
|