diff options
| author | Fuwn <[email protected]> | 2024-10-01 05:30:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-01 05:30:34 -0700 |
| commit | e25cfec3e1a68b3e064d02fd16537ac701e5ad4d (patch) | |
| tree | 0bf852293d20a03514be0151a31e34e42c3d66cd /modules/pc/default.nix | |
| parent | modules: add default pc programs (diff) | |
| download | nixos-config-e25cfec3e1a68b3e064d02fd16537ac701e5ad4d.tar.xz nixos-config-e25cfec3e1a68b3e064d02fd16537ac701e5ad4d.zip | |
modules: move shared i18n to pc
Diffstat (limited to 'modules/pc/default.nix')
| -rw-r--r-- | modules/pc/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/pc/default.nix b/modules/pc/default.nix index 27ef69b..97fe6b9 100644 --- a/modules/pc/default.nix +++ b/modules/pc/default.nix @@ -1,5 +1,9 @@ -{ pkgs, ... }: +{ pkgs, secrets, ... }: { + i18n.defaultLocale = secrets.i18n.locale; + time.timeZone = secrets.i18n.timezone; + console.keyMap = secrets.i18n.keymap; + environment.systemPackages = with pkgs; [ vim wget |