20 lines
389 B
Nix
20 lines
389 B
Nix
# Central Configuration
|
|
# Define user-specific and system-specific values here
|
|
# This file should be imported in flake.nix as specialArgs
|
|
|
|
{
|
|
# User configuration
|
|
username = "alice";
|
|
userEmail = "amaury.joly";
|
|
|
|
# System paths
|
|
configFlakePath = /etc/nixos;
|
|
|
|
# Timezone and locale
|
|
timezone = "Europe/Paris";
|
|
locale = "fr_FR.UTF-8";
|
|
|
|
# Hostname
|
|
hostname = "nixos";
|
|
}
|