Files
nixos-configuration/user-adam.nix

71 lines
1.0 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" ];
packages = with pkgs; [
# Web
firefox
thunderbird
nextcloud-client
rustdesk
vivaldi
yt-dlp
# Communication
gajim
signal-desktop
teamspeak_client
# Text and office
kate
kcalc
libreoffice-qt
# media manipulation
gimp
krita
darktable
# Terminal
guake
unzip
# entertainment
spotify
# dev
vscodium
ansible
go
virtualenv
shellcheck
# Maker
kicad
freecad
cura
# security
# yubioath-flutter
nmap
pwgen
# Desktop
kdeconnect
appimage-run
];
};
environment.shellAliases = {
l = "ls -lh";
ll = " ls -lah";
ip = "ip -c";
};
}