ff9d839609
- Add hosts/default.nix: common settings for all hosts - Add hosts/servers/default.nix: common settings for all servers - Add hosts/workstations/default.nix: common settings for all workstations - Created for production, dev, and stage environments These files are placeholders for now. Later, common settings can be moved here to reduce duplication across host configurations.
15 lines
429 B
Nix
15 lines
429 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Common settings for all servers in the dev environment
|
|
# This file is imported by all server configurations
|
|
|
|
# TODO: Move common server settings here later
|
|
# Examples:
|
|
# - Server-specific users/groups
|
|
# - Server-specific packages
|
|
# - Server-specific services
|
|
# - Server-specific security policies
|
|
# - Server-specific monitoring/alerting
|
|
# - Locale: en_US.UTF-8 (for servers)
|
|
} |