infrastructure/hosts/neodymium/home/packages.nix

38 lines
1 KiB
Nix
Raw Normal View History

{ pkgs, ... }: {
services.mpris-proxy.enable = true; # media keys
2023-04-08 13:53:58 +00:00
home.packages = with pkgs; [
2023-04-23 15:21:05 +00:00
borgbackup # backup
2023-04-23 18:35:12 +00:00
dconf # required by home-manager
distrobox # podman wrapper
2023-04-23 15:21:05 +00:00
duf # replacement for df
element-desktop # matrix client
feh # image viewer
gnome.nautilus # file explorer
grim # screenshot utils
htop # replacement for top
2023-09-14 19:09:05 +00:00
jaq # (fast) json utils
2023-04-23 17:30:21 +00:00
jmtpfs # for Android MTP
2023-04-23 15:21:05 +00:00
keepassxc # password manager
logseq # second brain journalling
2023-06-03 18:26:41 +00:00
micro # text editor
2023-09-14 19:09:05 +00:00
mpv # video viewer
2023-05-07 21:11:52 +00:00
nil # nix language server
2023-04-23 15:21:05 +00:00
nixfmt # nix formatter
pamixer # volume mixer cli
pavucontrol # volume mixer
pwgen # password generator
rsync # better scp
slurp # region selector
2023-09-14 19:09:05 +00:00
socat # socket cat
swaybg # wayland background
2023-04-23 15:21:05 +00:00
swayidle # wayland idle hooks
swaylock # wayland lockscreen
thunderbird # mail client
tmux # terminal multiplexer
webcord-vencord # discord client
2023-04-23 15:21:05 +00:00
wl-clipboard # clipboard utils
xdg-utils
2023-04-08 13:53:58 +00:00
];
}