mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
14 lines
228 B
Nix
14 lines
228 B
Nix
{lib, ...}:
|
|
{
|
|
imports = [
|
|
./network.nix
|
|
./users.nix
|
|
./nix.nix
|
|
./packages.nix
|
|
];
|
|
|
|
# Internationalisation properties
|
|
time.timeZone = "CET";
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
}
|