refactor(modules/system): move system config to a module
This commit is contained in:
parent
62f94ad85e
commit
cb01ba95b0
7 changed files with 65 additions and 23 deletions
9
modules/nixos/system/localisation.nix
Normal file
9
modules/nixos/system/localisation.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkMerge [
|
||||
{
|
||||
time.timeZone = "Asia/Singapore";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue