mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +00:00
refactor: modularize host configuration
This commit is contained in:
parent
783b7c8705
commit
bb8d9c6752
10 changed files with 152 additions and 111 deletions
23
hosts/nixos/modules/time.nix
Normal file
23
hosts/nixos/modules/time.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
time.timeZone = "Asia/Seoul";
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "ko_KR.UTF-8";
|
||||
LC_IDENTIFICATION = "ko_KR.UTF-8";
|
||||
LC_MEASUREMENT = "ko_KR.UTF-8";
|
||||
LC_MONETARY = "ko_KR.UTF-8";
|
||||
LC_NAME = "ko_KR.UTF-8";
|
||||
LC_NUMERIC = "ko_KR.UTF-8";
|
||||
LC_PAPER = "ko_KR.UTF-8";
|
||||
LC_TELEPHONE = "ko_KR.UTF-8";
|
||||
LC_TIME = "ko_KR.UTF-8";
|
||||
};
|
||||
inputMethod = {
|
||||
enable = true;
|
||||
type = "kime";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue