infrastructure/hosts/neodymium/home/packages.nix

37 lines
997 B
Nix

{ pkgs, ... }: {
services.mpris-proxy.enable = true; # media keys
home.packages = with pkgs; [
borgbackup # backup
dconf # required by home-manager
duf # replacement for df
element-desktop # matrix client
feh # image viewer
gnome.nautilus # file explorer
grim # screenshot utils
htop # replacement for top
jaq # (fast) json utils
jmtpfs # for Android MTP
keepassxc # password manager
logseq # second brain journalling
micro # text editor
mpv # video viewer
nil # nix language server
nixfmt # nix formatter
pamixer # volume mixer cli
pavucontrol # volume mixer
pwgen # password generator
rsync # better scp
slurp # region selector
socat # socket cat
swaybg # wayland background
swayidle # wayland idle hooks
swaylock # wayland lockscreen
thunderbird # mail client
tmux # terminal multiplexer
webcord-vencord # discord client
wl-clipboard # clipboard utils
xdg-utils
];
}