diff --git a/nixos/laptop/default.nix b/nixos/laptop/default.nix index d687eb1..ec9caf8 100644 --- a/nixos/laptop/default.nix +++ b/nixos/laptop/default.nix @@ -37,7 +37,10 @@ }; doas = { enable = true; - wheelNeedsPassword = false; + extraRules = [ + # Allow wheel to run all commands without password and keep user env. + { groups = [ "wheel" ]; noPass = true; keepEnv = true; } + ]; }; polkit.enable = true; rtkit.enable = true; @@ -52,6 +55,8 @@ }; }; + i18n.supportedLocales = [ "all" ]; + time.timeZone = "Europe/Sofia"; fonts.packages = with pkgs; [ nerdfonts noto-fonts noto-fonts-emoji noto-fonts-lgc-plus ];