mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nixos: move locale out of common
This commit is contained in:
parent
875f7e7d4b
commit
b5776cf3ef
3 changed files with 3 additions and 4 deletions
|
|
@ -1,6 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./hardware-configuration.nix # generated
|
||||
./fs.nix
|
||||
./restic.nix
|
||||
|
||||
./battery.nix
|
||||
|
||||
|
|
@ -11,9 +13,7 @@
|
|||
./display.nix
|
||||
./gui.nix
|
||||
|
||||
./restic.nix
|
||||
./fs.nix
|
||||
|
||||
./locale.nix
|
||||
./unfree-predicate.nix
|
||||
./programs.nix
|
||||
];
|
||||
|
|
|
|||
13
nix/configurations/vanadium/nixos/locale.nix
Normal file
13
nix/configurations/vanadium/nixos/locale.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{lib, ...}: {
|
||||
config = lib.mkDefault {
|
||||
time.timeZone = "Europe/Paris";
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
supportedLocales = [
|
||||
"en_US.UTF-8/UTF-8"
|
||||
"fr_FR.UTF-8/UTF-8"
|
||||
"zh_TW.UTF-8/UTF-8"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue