nixos,home: sort home.packages
This commit is contained in:
parent
90f5949e70
commit
934a0eeea5
3 changed files with 60 additions and 52 deletions
|
@ -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
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -3,16 +3,22 @@
|
||||||
imports = [
|
imports = [
|
||||||
./components/wallpaper.nix
|
./components/wallpaper.nix
|
||||||
];
|
];
|
||||||
home.packages = with pkgs.gnomeExtensions; [
|
home.packages =
|
||||||
# GNOME extensions
|
(with pkgs.gnomeExtensions; [
|
||||||
arcmenu
|
# GNOME extensions
|
||||||
appindicator
|
arcmenu
|
||||||
blur-my-shell
|
appindicator
|
||||||
caffeine
|
blur-my-shell
|
||||||
dash-to-panel
|
caffeine
|
||||||
dash-to-dock
|
dash-to-panel
|
||||||
gamemode # outdated
|
dash-to-dock
|
||||||
just-perfection
|
gamemode # outdated
|
||||||
kimpanel
|
just-perfection
|
||||||
];
|
kimpanel
|
||||||
|
])
|
||||||
|
++ (with pkgs.gnome; [
|
||||||
|
gnome-tweaks
|
||||||
|
gnome-software
|
||||||
|
gnome-shell-extensions
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue