summary refs log tree commit diff
path: root/nixos/modules/profiles/minimal.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/profiles/minimal.nix')
-rw-r--r--nixos/modules/profiles/minimal.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix
index 5067622aaf1..69729923e03 100644
--- a/nixos/modules/profiles/minimal.nix
+++ b/nixos/modules/profiles/minimal.nix
@@ -3,6 +3,9 @@
 
 { config, lib, pkgs, ... }:
 
+with lib;
+
 {
-  environment.noXlibs = true;
+  environment.noXlibs = mkDefault true;
+  i18n.supportedLocales = [ config.i18n.defaultLocale ];
 }