From 4b9d20dbb625ddc92aac46e9e32d6063a8689855 Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Sun, 22 Mar 2026 15:22:34 +0100 Subject: [PATCH] fix: localization stuff not getting configured correctly --- configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 3552170..c21b194 100644 --- a/configuration.nix +++ b/configuration.nix @@ -97,6 +97,11 @@ in kcm_wallpaper=false ''; + xdg.userDirs = { + enable = true; + createDirectories = true; + }; + # andared_corporativo network manager settings "NetworkManager/system-connections/Andared_Corporativo.nmconnection" = { mode = "0600"; @@ -167,7 +172,6 @@ in users.users.root.initialPassword = "toor"; environment.systemPackages = with pkgs; [ - firefox git gh vim @@ -198,6 +202,11 @@ in ])) ]; + programs.firefox = { + enable = true; + languagePacks = [ "es-ES" ]; + }; + # sudo configuration security.sudo.wheelNeedsPassword = true;