ChCh-Public-PCs-NIXOS-Config/user-chch.nix
fnord 015d5497a8 user-chch.nix aktualisiert
Added additional software
2025-04-27 00:04:20 +02:00

22 lines
460 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{config, libs, pkgs, ...}:
{
users.users.chch = {
isNormalUser = true;
extraGroups = [ "wheel" "lpadmin" "dialout" "wireshark" ]; # Enable sudo for the user.
packages = with pkgs; [
tree
firefox
ungoogled-chromium
printrun
gimp
vlc
ffmpeg
nextcloud-client
libreoffice-qt6-fresh
temurin-jre-bin-23
thonny
gqrx
rpi-imager
];
};
}