flake/users/guanranwang/home-manager/nixos/home.nix

77 lines
1.4 KiB
Nix
Raw Normal View History

2023-11-05 11:26:09 +00:00
{pkgs, ...}: {
2023-09-19 00:17:43 +00:00
home = {
username = "guanranwang";
homeDirectory = "/home/guanranwang";
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-09 18:23:06 +00:00
## # vvv 3 UI libraries I dislike vvv
#cinny-desktop # # Tauri
#element-desktop # # Electron
#fluffychat # # Flutter
2023-11-09 18:23:06 +00:00
### Misc
telegram-desktop
#discord
#qq
2023-11-09 18:23:06 +00:00
# Misc
bitwarden
obs-studio
2023-11-09 18:23:06 +00:00
gparted
timeshift
#tuba
#piper
#gradience
#dippi
2023-11-09 18:23:06 +00:00
### Terminal
# TUI
2023-11-09 18:23:06 +00:00
joshuto
bottom
helix
skim
bat
2023-11-09 18:23:06 +00:00
# CLI
sops
nix-output-monitor
fastfetch
wget
ydict
2023-11-09 18:23:06 +00:00
skim
fd
2023-11-09 18:23:06 +00:00
ripgrep
eza
zoxide
trashy
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-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
}