From 029922bb83bb3603583b7487da5b01e0f920e97f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Mon, 3 Nov 2025 21:49:37 +0000 Subject: [PATCH] more personalizations --- hosts/sqq1-desk2/configuration.nix | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/hosts/sqq1-desk2/configuration.nix b/hosts/sqq1-desk2/configuration.nix index d586fe6..c791781 100644 --- a/hosts/sqq1-desk2/configuration.nix +++ b/hosts/sqq1-desk2/configuration.nix @@ -17,11 +17,6 @@ in services.xserver.desktopManager.xfce.enableScreensaver = false; - i18n.defaultLocale = lib.mkForce "lt_LT.UTF-8"; - i18n.extraLocaleSettings = { - LANGUAGE = "lt:ru:en"; - }; - age.secrets = { motiejus-passwd-hash.file = ../../secrets/motiejus_passwd_hash.age; root-passwd-hash.file = ../../secrets/root_passwd_hash.age; @@ -67,6 +62,30 @@ in services.displayManager.autoLogin.user = lib.mkForce "irena"; + home-manager.users.irena = { + home = { + stateVersion = "25.05"; + language = { + base = "lt_LT.UTF-8"; + }; + sessionVariables = { + LANGUAGE = "lt:ru:en"; + }; + }; + + programs.firefox = { + enable = true; + profiles.default = { + isDefault = true; + extensions = with pkgs.nur.repos.rycee.firefox-addons; [ + ublock-origin + consent-o-matic + multi-account-containers + ]; + }; + }; + }; + mj = { stateVersion = "25.05"; timeZone = "Europe/Vilnius";