diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-08 17:41:18 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-08 17:41:18 +0200 |
commit | 849bb59d51443c1b08a65926a001c69660b89fae (patch) | |
tree | 18c3c7308cadef5a7630d1b28a5d750199af5f71 | |
parent | 35f6ec95c6034b3062a26ae32e2016c05085332d (diff) | |
download | nixos-849bb59d51443c1b08a65926a001c69660b89fae.tar nixos-849bb59d51443c1b08a65926a001c69660b89fae.tar.gz nixos-849bb59d51443c1b08a65926a001c69660b89fae.tar.bz2 nixos-849bb59d51443c1b08a65926a001c69660b89fae.tar.xz nixos-849bb59d51443c1b08a65926a001c69660b89fae.zip |
...
-rw-r--r-- | hosts/sif/default.nix | 2 | ||||
-rw-r--r-- | system-profiles/default-locale.nix | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/hosts/sif/default.nix b/hosts/sif/default.nix index 5ed4e05e..f505874b 100644 --- a/hosts/sif/default.nix +++ b/hosts/sif/default.nix | |||
@@ -684,6 +684,8 @@ in { | |||
684 | "/var/lib/fprint" | 684 | "/var/lib/fprint" |
685 | "/var/lib/bluetooth" | 685 | "/var/lib/bluetooth" |
686 | "/etc/NetworkManager/system-connections" | 686 | "/etc/NetworkManager/system-connections" |
687 | { directory = "/var/uucp"; user = "uucp"; group = "uucp"; mode = "0700"; } | ||
688 | { directory = "/var/spool/uucp"; user = "uucp"; group = "uucp"; mode = "0750"; } | ||
687 | ]; | 689 | ]; |
688 | files = [ | 690 | files = [ |
689 | "/etc/localtime" | 691 | "/etc/localtime" |
diff --git a/system-profiles/default-locale.nix b/system-profiles/default-locale.nix index 6c95504b..2d483f04 100644 --- a/system-profiles/default-locale.nix +++ b/system-profiles/default-locale.nix | |||
@@ -6,7 +6,7 @@ with lib; | |||
6 | i18n = { | 6 | i18n = { |
7 | defaultLocale = "en_DK.UTF-8"; | 7 | defaultLocale = "en_DK.UTF-8"; |
8 | extraLocaleSettings = { | 8 | extraLocaleSettings = { |
9 | "TIME_STYLE" = "posix-long-iso"; | 9 | "TIME_STYLE" = "long-iso"; |
10 | }; | 10 | }; |
11 | supportedLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "en_DK.UTF-8/UTF-8" ]; | 11 | supportedLocales = [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "en_DK.UTF-8/UTF-8" ]; |
12 | }; | 12 | }; |