8e22e05d2b
- Add network/dns.nix, network/time.nix, network/proxy.nix, network/smtp.nix - Add network/default.nix to import all network files - Add hosts/default.nix, hosts/servers/default.nix, hosts/workstations/default.nix - These placeholders match the structure in nixos-infra for consistency The sample environment now reflects the same organization as production, dev, and stage environments, making it easier to use as a reference.
14 lines
363 B
Nix
14 lines
363 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Common settings for all hosts in the sample environment
|
|
# This file is imported by all host configurations (servers and workstations)
|
|
|
|
# TODO: Move common settings here later
|
|
# Examples:
|
|
# - Common users/groups
|
|
# - Common packages
|
|
# - Common services
|
|
# - Common security policies
|
|
# - Common monitoring/alerting
|
|
} |