2023-11-05 11:26:09 +00:00
|
|
|
{pkgs, ...}: {
|
2023-09-19 00:17:43 +00:00
|
|
|
home = {
|
|
|
|
username = "guanranwang";
|
|
|
|
homeDirectory = "/home/guanranwang";
|
|
|
|
|
2023-11-04 10:14:42 +00:00
|
|
|
packages =
|
|
|
|
(with pkgs; [
|
2023-11-09 18:23:06 +00:00
|
|
|
# Messaging
|
|
|
|
### Matrix
|
|
|
|
neochat # kinda buggy with window resizing, but it works and its not electron
|
|
|
|
#nheko # wont let me login for some reason
|
|
|
|
#fractal # does not work with Mozilla's SAML login
|
2023-11-04 10:14:42 +00:00
|
|
|
|
2023-11-09 18:23:06 +00:00
|
|
|
## # vvv 3 UI libraries I dislike vvv
|
|
|
|
#cinny-desktop # # Tauri
|
|
|
|
#element-desktop # # Electron
|
|
|
|
#fluffychat # # Flutter
|
2023-11-04 10:14:42 +00:00
|
|
|
|
2023-11-09 18:23:06 +00:00
|
|
|
### Misc
|
|
|
|
telegram-desktop
|
2023-11-04 10:14:42 +00:00
|
|
|
#discord
|
|
|
|
#qq
|
2023-11-09 18:23:06 +00:00
|
|
|
|
|
|
|
# Misc
|
|
|
|
bitwarden
|
2023-11-04 10:14:42 +00:00
|
|
|
obs-studio
|
2023-11-09 18:23:06 +00:00
|
|
|
gparted
|
|
|
|
timeshift
|
|
|
|
#tuba
|
|
|
|
#piper
|
|
|
|
#gradience
|
|
|
|
#dippi
|
2023-11-04 10:14:42 +00:00
|
|
|
|
2023-11-09 18:23:06 +00:00
|
|
|
### Terminal
|
2023-11-04 10:14:42 +00:00
|
|
|
# TUI
|
2023-11-09 18:23:06 +00:00
|
|
|
joshuto
|
2023-11-04 10:14:42 +00:00
|
|
|
bottom
|
|
|
|
helix
|
|
|
|
skim
|
|
|
|
bat
|
|
|
|
|
2023-11-09 18:23:06 +00:00
|
|
|
# CLI
|
|
|
|
sops
|
|
|
|
nix-output-monitor
|
2023-11-05 09:42:16 +00:00
|
|
|
fastfetch
|
2023-11-04 10:14:42 +00:00
|
|
|
wget
|
|
|
|
ydict
|
2023-11-09 18:23:06 +00:00
|
|
|
skim
|
2023-11-04 10:14:42 +00:00
|
|
|
fd
|
2023-11-09 18:23:06 +00:00
|
|
|
ripgrep
|
|
|
|
eza
|
|
|
|
zoxide
|
|
|
|
trashy
|
2023-11-04 10:14:42 +00:00
|
|
|
freshfetch
|
|
|
|
hyperfine
|
|
|
|
])
|
|
|
|
++ (with pkgs.gnome; [
|
|
|
|
nautilus
|
|
|
|
zenity
|
2023-11-09 18:23:06 +00:00
|
|
|
seahorse
|
|
|
|
file-roller
|
|
|
|
gnome-weather
|
|
|
|
gnome-calculator
|
|
|
|
dconf-editor
|
2023-11-04 10:14:42 +00:00
|
|
|
]);
|
2023-09-19 00:17:43 +00:00
|
|
|
};
|
|
|
|
|
2023-11-08 16:25:07 +00:00
|
|
|
services.ssh-agent.enable = true;
|
|
|
|
|
2023-11-05 12:50:08 +00:00
|
|
|
#programs.boxxy = {
|
|
|
|
# enable = true;
|
|
|
|
# #rules = {
|
|
|
|
# #
|
|
|
|
# #};
|
|
|
|
#};
|
2023-09-19 00:17:43 +00:00
|
|
|
}
|