moved user adam to own config file.

This commit is contained in:
2022-10-19 11:52:19 +02:00
parent 4db3d467c1
commit ceb13db10a
2 changed files with 39 additions and 40 deletions

39
user-adam.nix Normal file
View File

@@ -0,0 +1,39 @@
# Define a user account. Don't forget to set a password with passwd.
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
# security
yubioath-desktop
nmap
# Desktop
];
};