{ config, pkgs, ... }: let domain = "example.com"; in { imports = [ { _module.args = { inherit domain; }; } (import /var/src/config-shared { inherit config pkgs domain; }) # Import hardware-specific configuration # This file is typically generated by nixos-generate-config ./hardware-configuration.nix # Import boot configuration (bootloader settings) ./boot.nix # Import any machine-specific services # Comment out or remove if not needed # ./example-service.nix ]; }