Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos/ISO profile: fix defaultLocales :-)

https://github.com/NixOS/nixpkgs/commit/eb4a88d8fd2#commitcomment-12527102

+3 -1
+3 -1
nixos/modules/profiles/minimal.nix
··· 7 7 8 8 { 9 9 environment.noXlibs = mkDefault true; 10 - i18n.supportedLocales = [ config.i18n.defaultLocale ]; 10 + 11 + # This isn't perfect, but let's expect the user specifies an UTF-8 defaultLocale 12 + i18n.supportedLocales = [ (config.i18n.defaultLocale + "/UTF-8") ]; 11 13 services.nixosManual.enable = mkDefault false; 12 14 }