diff options
author | Linnnus <[email protected]> | 2024-12-29 10:47:03 +0000 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-01-27 19:48:53 +0000 |
commit | 466751719ca5103d93b3a96fa40a68b8819fe1e7 (patch) | |
tree | b456cb391d3f77e47b6e340ca95ae7cfb34f4558 /shared/nixos | |
parent | 599901fdb3531c73cbe1cb7d11eb0eb6c8c72de2 (diff) |
hosts/omar: Add danish l18n settings
Diffstat (limited to 'shared/nixos')
-rw-r--r-- | shared/nixos/danish/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shared/nixos/danish/default.nix b/shared/nixos/danish/default.nix new file mode 100644 index 0000000..b8a33ed --- /dev/null +++ b/shared/nixos/danish/default.nix @@ -0,0 +1,10 @@ +# This module should be imported on Danish hosts. + +{lib, ...}: + +{ + i18n.defaultLocale = "da_DK.UTF-8"; + + # Allow indirect overwriting via `console.useXkbConfig`. + console.keyMap = lib.mkDefault "dk"; +} |