passwordless sudo and a few packages

This commit is contained in:
William 2024-06-17 08:36:39 -03:00
parent 2a982c01e1
commit a4b9eb60da
2 changed files with 11 additions and 5 deletions

View file

@ -3,8 +3,11 @@
{ {
security = { security = {
unprivilegedUsernsClone = true; # Needed for rootless podman unprivilegedUsernsClone = true; # Needed for rootless podman
sudo.extraConfig = '' sudo = {
Defaults lecture = never wheelNeedsPassword = false;
''; extraConfig = ''
Defaults lecture = never
'';
};
}; };
} }

View file

@ -30,10 +30,11 @@ in {
inkscape inkscape
# itch # Currently broken # itch # Currently broken
junction junction
kde-rounded-corners
kolourpaint kolourpaint
krita krita
libfido2 libfido2
libreoffice-qt # libreoffice-qt
mangohud mangohud
mpv mpv
nextcloud-client nextcloud-client
@ -42,6 +43,7 @@ in {
obs-studio obs-studio
ocs-url ocs-url
octaveFull octaveFull
onlyoffice-bin_latest
p7zip p7zip
platformio platformio
prismlauncher prismlauncher
@ -88,9 +90,10 @@ in {
fontDir.enable = true; fontDir.enable = true;
fontconfig.enable = true; fontconfig.enable = true;
packages = with pkgs; [ packages = with pkgs; [
corefonts
inter inter
roboto
maple-mono maple-mono
roboto
(nerdfonts.override { fonts = [ "Hack" ]; }) (nerdfonts.override { fonts = [ "Hack" ]; })
]; ];
}; };