diff --git a/hosts/common/security.nix b/hosts/common/security.nix index b830cf0..3eba665 100644 --- a/hosts/common/security.nix +++ b/hosts/common/security.nix @@ -3,8 +3,11 @@ { security = { unprivilegedUsernsClone = true; # Needed for rootless podman - sudo.extraConfig = '' - Defaults lecture = never - ''; + sudo = { + wheelNeedsPassword = false; + extraConfig = '' + Defaults lecture = never + ''; + }; }; } diff --git a/hosts/desktops/common/packages.nix b/hosts/desktops/common/packages.nix index ff47d3d..73bec30 100644 --- a/hosts/desktops/common/packages.nix +++ b/hosts/desktops/common/packages.nix @@ -30,10 +30,11 @@ in { inkscape # itch # Currently broken junction + kde-rounded-corners kolourpaint krita libfido2 - libreoffice-qt + # libreoffice-qt mangohud mpv nextcloud-client @@ -42,6 +43,7 @@ in { obs-studio ocs-url octaveFull + onlyoffice-bin_latest p7zip platformio prismlauncher @@ -88,9 +90,10 @@ in { fontDir.enable = true; fontconfig.enable = true; packages = with pkgs; [ + corefonts inter - roboto maple-mono + roboto (nerdfonts.override { fonts = [ "Hack" ]; }) ]; };