mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-30 19:14:19 +00:00
26 lines
556 B
Nix
26 lines
556 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# Hardware Scan
|
|
./hardware-configuration.nix
|
|
|
|
# Users
|
|
../../users/cluster-admin/caperren.nix
|
|
|
|
# System Configuration
|
|
../system/cpu-intel.nix
|
|
../system/fonts.nix
|
|
../system/home-manager-settings.nix
|
|
../system/internationalization.nix
|
|
../system/networking.nix
|
|
../system/nix-settings.nix
|
|
../system/security.nix
|
|
../system/systemd-boot.nix
|
|
|
|
# Application Groups
|
|
../application-groups/system-utilities-cluster.nix
|
|
];
|
|
|
|
networking.hostName = "cap-apollo-n01";
|
|
}
|