Files
nixos-configuration/user-adam.nix
2023-09-25 11:22:26 +02:00

92 lines
1.3 KiB
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.
# Define a user account. Don't forget to set a password with passwd.
{ config, pkgs, ... }:
{
users.users.adam = {
isNormalUser = true;
description = "Adam Rabjerg";
extraGroups = [ "networkmanager" "wheel" "docker" "dialout" "plugdev" ];
packages = with pkgs; [
# Web
firefox
thunderbird
nextcloud-client
#rustdesk
vivaldi
yt-dlp
# Communication
signal-desktop
telegram-desktop
teamspeak_client
element-desktop
# Text and Office
kate
kcalc
libreoffice-qt
onlyoffice-bin
texlive.combined.scheme-full
# Media manipulation
gimp
krita
darktable
# Terminal
unzip
starship
virtualenv
sshpass
esptool
gopass
# Entertainment
spotify
# Dev & DevOps
vscodium
ansible
go
kubectl
k9s
git-lfs
teleport
postgresql
# Maker
kicad
freecad
cura
blender
thonny
rtl-sdr
sdrpp
gqrx
# Security
nmap
pwgen
# Network
iperf3
ipcalc
# Desktop
kdeconnect
appimage-run
ark
kdialog
];
};
environment.shellAliases = {
l = "ls -lh";
ll = " ls -lah";
ip = "ip -c";
};
}