infrastructure/hosts/neodymium/home/packages.nix

35 lines
976 B
Nix
Raw Normal View History

2023-04-08 13:53:58 +00:00
{ inputs, pkgs, config, ... }: {
nixpkgs.config.allowUnfree = false;
services.mpris-proxy.enable = true;
home.packages = with pkgs; [
2023-04-23 15:21:05 +00:00
baobab # disk utils
borgbackup # backup
duf # replacement for df
element-desktop # matrix client
feh # image viewer
gnome.nautilus # file explorer
grim # screenshot utils
htop # replacement for top
2023-04-23 17:30:21 +00:00
jmtpfs # for Android MTP
2023-04-23 15:21:05 +00:00
keepassxc # password manager
libreoffice-fresh # office suite
logseq # second brain journalling
mpv # video viewer
neovim # text editor
nixfmt # nix formatter
pamixer # volume mixer cli
pavucontrol # volume mixer
pwgen # password generator
rsync # better scp
slurp # region selector
swayidle # wayland idle hooks
swaylock # wayland lockscreen
thunderbird # mail client
tmux # terminal multiplexer
waybar # wayland status bar
wl-clipboard # clipboard utils
x2goclient # remote desktop
xdg-utils
2023-04-08 13:53:58 +00:00
];
}