nixos-old/user.nix

131 lines
1.9 KiB
Nix
Raw Normal View History

2022-10-26 09:18:41 +00:00
{ pkgs, users, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.zoe = {
shell = pkgs.fish;
isNormalUser = true;
2022-10-29 17:36:24 +00:00
description = "zoe";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
2022-10-26 09:18:41 +00:00
packages = with pkgs; [
# internet
firefox
ungoogled-chromium
curl
git
networkmanagerapplet
2022-10-30 23:43:30 +00:00
thunderbird
2022-11-05 11:15:01 +00:00
tor-browser-bundle-bin
2023-01-17 16:49:53 +00:00
onionshare-gui
2022-11-05 11:15:01 +00:00
mullvad-vpn
2022-11-15 18:37:12 +00:00
tdesktop
2022-11-20 16:48:52 +00:00
syncthing
2023-01-17 16:49:53 +00:00
qbittorrent
2022-10-26 09:18:41 +00:00
2022-10-31 14:42:04 +00:00
# files and partitions
gnome.gnome-disk-utility
2022-12-19 13:15:35 +00:00
pcmanfm
2022-11-10 09:46:38 +00:00
p7zip
2022-11-05 13:18:31 +00:00
xarchiver
2022-11-26 16:09:20 +00:00
tree
2022-12-19 13:15:35 +00:00
writedisk
2022-11-10 09:46:38 +00:00
2022-10-26 09:18:41 +00:00
# music / sound
cmus
pavucontrol
2022-11-04 14:04:17 +00:00
playerctl
2022-10-26 09:18:41 +00:00
2022-10-28 20:06:35 +00:00
# video
mpv
yt-dlp
2022-12-02 16:38:19 +00:00
obs-studio
2022-12-08 11:19:42 +00:00
ffmpeg
2023-01-06 01:42:14 +00:00
kdenlive
vulkan-tools
2022-10-28 20:06:35 +00:00
2022-10-31 07:53:46 +00:00
# images
feh
2022-11-04 14:04:17 +00:00
viewnior
2022-11-10 09:46:38 +00:00
gimp
krita
2022-11-11 09:50:22 +00:00
gnome.cheese
2022-11-30 23:14:02 +00:00
flameshot
2022-12-24 15:28:48 +00:00
aseprite-unfree
2022-10-31 07:53:46 +00:00
2022-11-04 17:21:51 +00:00
# pdf
evince
2022-10-26 09:18:41 +00:00
# games
steam
2022-11-10 09:46:38 +00:00
pcsx2
2023-01-22 12:57:21 +00:00
dolphin-emu
sc-controller
2023-01-23 10:57:51 +00:00
godot_4
2023-01-27 15:52:19 +00:00
minetest
airshipper
2022-10-26 09:18:41 +00:00
# x11
arandr
2022-11-19 11:26:53 +00:00
lxappearance
2022-12-23 21:40:47 +00:00
wacomtablet
2022-10-26 09:18:41 +00:00
# terminal
kitty
# window manager
rofi
2022-10-30 13:51:30 +00:00
rofimoji
2022-10-30 20:35:51 +00:00
dmenu
2022-10-26 09:18:41 +00:00
2022-11-02 09:35:52 +00:00
# uni
dbeaver
2022-12-02 16:48:30 +00:00
zoom-us
2023-01-30 11:22:21 +00:00
gnome.pomodoro
2022-11-02 09:35:52 +00:00
2022-12-17 06:52:02 +00:00
#3d print
2022-12-20 11:37:06 +00:00
prusa-slicer
2023-01-08 23:47:22 +00:00
#font
fontforge-gtk
2022-12-17 06:52:02 +00:00
2022-10-26 09:18:41 +00:00
# dev
2023-01-31 18:47:18 +00:00
vscodium
2022-11-26 13:35:40 +00:00
## nix
any-nix-shell
2022-10-26 09:18:41 +00:00
## js
nodejs
2022-11-14 11:28:54 +00:00
nodePackages.prettier
2022-10-26 09:18:41 +00:00
## rust
rust-analyzer
rustup
## python
python311
black
2022-11-04 14:04:17 +00:00
# dotlang
graphviz
# 3d
blender
2022-10-26 09:18:41 +00:00
# help
2022-12-02 16:38:19 +00:00
tealdeer
2022-10-26 09:18:41 +00:00
# nix tools
## formatter for .nix files
nixpkgs-fmt
## find nix packages containing certain files
nix-index
2022-10-28 20:06:35 +00:00
# system tools
2023-01-31 18:47:18 +00:00
calc
2022-11-26 16:09:20 +00:00
neofetch
2022-10-28 20:06:35 +00:00
htop
2022-12-02 16:38:19 +00:00
bat
du-dust
2022-11-02 09:35:52 +00:00
gnome.gnome-clocks
2022-10-31 15:45:04 +00:00
blueberry
2022-12-17 06:52:02 +00:00
killall
2023-01-27 18:43:48 +00:00
appimage-run
2022-10-26 09:18:41 +00:00
];
};
}