nixos,home: sort home.packages

This commit is contained in:
Guanran Wang 2023-11-10 02:23:06 +08:00
parent 90f5949e70
commit 934a0eeea5
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
3 changed files with 60 additions and 52 deletions

View file

@ -5,65 +5,63 @@
packages = packages =
(with pkgs; [ (with pkgs; [
# gui # Messaging
gparted ### Matrix
timeshift 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
### matrix ## # vvv 3 UI libraries I dislike vvv
#fluffychat #cinny-desktop # # Tauri
element-desktop #element-desktop # # Electron
cinny-desktop #fluffychat # # Flutter
#nheko
### misc ### Misc
bitwarden telegram-desktop
#discord #discord
#qq #qq
tuba
protonup-qt
piper
telegram-desktop
qbittorrent
gradience
dippi
obs-studio
gnome.seahorse
gnome.file-roller
gnome.gnome-weather
gnome.gnome-calculator
gnome.dconf-editor
# Misc
bitwarden
obs-studio
gparted
timeshift
#tuba
#piper
#gradience
#dippi
### Terminal
# TUI # TUI
joshuto # rs joshuto
bottom bottom
helix helix
skim skim
bat bat
# cli # CLI
sops
nix-output-monitor
fastfetch fastfetch
wget wget
sops
skim
ydict ydict
nix-output-monitor skim
zoxide # rs
trashy
eza
ripgrep
fd fd
ripgrep
eza
zoxide
trashy
freshfetch freshfetch
hyperfine hyperfine
]) ])
++ (with pkgs.gnome; [ ++ (with pkgs.gnome; [
# GNOME
nautilus nautilus
zenity zenity
seahorse
# GNOME only file-roller
#gnome-tweaks gnome-weather
#gnome-software gnome-calculator
#gnome-shell-extensions dconf-editor
]); ]);
}; };

View file

@ -1,9 +1,13 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
### Games
steam steam
#lunar-client
prismlauncher
osu-lazer-bin osu-lazer-bin
prismlauncher
#lunar-client
### Tools
protonup-qt
]; ];
programs.mangohud = { programs.mangohud = {

View file

@ -3,7 +3,8 @@
imports = [ imports = [
./components/wallpaper.nix ./components/wallpaper.nix
]; ];
home.packages = with pkgs.gnomeExtensions; [ home.packages =
(with pkgs.gnomeExtensions; [
# GNOME extensions # GNOME extensions
arcmenu arcmenu
appindicator appindicator
@ -14,5 +15,10 @@
gamemode # outdated gamemode # outdated
just-perfection just-perfection
kimpanel kimpanel
]; ])
++ (with pkgs.gnome; [
gnome-tweaks
gnome-software
gnome-shell-extensions
]);
} }