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

View file

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

View file

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