nixos-old/user.nix

114 lines
1.7 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.

{ pkgs, users, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.zoe = {
shell = pkgs.fish;
isNormalUser = true;
description = "zoe";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
packages = with pkgs; [
# internet
firefox
ungoogled-chromium
curl
git
networkmanagerapplet
thunderbird
tor-browser-bundle-bin
mullvad-vpn
tdesktop
syncthing
# files and partitions
gnome.gnome-disk-utility
pcmanfm
p7zip
xarchiver
tree
writedisk
# music / sound
cmus
pavucontrol
playerctl
# video
mpv
yt-dlp
obs-studio
ffmpeg
# images
feh
viewnior
gimp
krita
gnome.cheese
flameshot
# pdf
evince
# games
steam
pcsx2
# x11
arandr
lxappearance
wacomtablet
# terminal
kitty
# window manager
rofi
rofimoji
dmenu
# uni
dbeaver
zoom-us
#3d print
prusa-slicer
# dev
## nix
any-nix-shell
## js
nodejs
nodePackages.prettier
## rust
rust-analyzer
rustup
## python
python311
black
# dotlang
graphviz
# 3d
blender
# help
tealdeer
# nix tools
## formatter for .nix files
nixpkgs-fmt
## find nix packages containing certain files
nix-index
# system tools
neofetch
htop
bat
du-dust
gnome.gnome-clocks
blueberry
killall
];
};
}