Anthony Rodriguez
99b6b41de3
Moved everything from core into modules. I want to get all the NixOS stuff moved first, and do home-manager after. I used the different profiles to disable configuration that might break my server, as it has its own configuration already. This will need to be refactored later, as I want to ultimately only use the local module system.
18 lines
463 B
Nix
18 lines
463 B
Nix
{lib, ...}: {
|
|
i18n = {
|
|
defaultLocale = "en_US.UTF-8";
|
|
extraLocaleSettings = {
|
|
LC_ADDRESS = "fr_CH.UTF-8";
|
|
LC_IDENTIFICATION = "fr_CH.UTF-8";
|
|
LC_MEASUREMENT = "fr_CH.UTF-8";
|
|
LC_MONETARY = "fr_CH.UTF-8";
|
|
LC_NAME = "fr_CH.UTF-8";
|
|
LC_NUMERIC = "fr_CH.UTF-8";
|
|
LC_PAPER = "fr_CH.UTF-8";
|
|
LC_TELEPHONE = "fr_CH.UTF-8";
|
|
LC_TIME = "fr_CH.UTF-8";
|
|
};
|
|
};
|
|
|
|
time.timeZone = lib.mkDefault "Europe/Paris";
|
|
}
|