Files
nixos-configuration/user-adam.nix
2022-10-20 11:42:25 +02:00

48 lines
716 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.
# 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" ];
packages = with pkgs; [
# Web
firefox
thunderbird
nextcloud-client
# Communication
gajim
signal-desktop
# Text and office
kate
libreoffice-qt
# media manipulation
gimp
# Terminal
guake
# entertainment
spotify
# dev
vscodium
kicad
ansible
python-virtualenv
# security
yubioath-desktop
nmap
# Desktop
];
};
}