infrastructure/hosts/neodymium/home/packages.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, lib, ... }: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"vscode-insiders"
"vscode-extension-github-copilot"
"vscode-extension-ms-vsliveshare-vsliveshare"
];
services.mpris-proxy.enable = true; # media keys
2023-04-08 13:53:58 +00:00
home.packages = with pkgs; [
2023-05-29 13:06:05 +00:00
swaybg # wayland background
socat # socket cat
2023-06-10 18:36:41 +00:00
jaq # (fast) json utils
2023-04-23 15:21:05 +00:00
borgbackup # backup
2023-04-23 18:35:12 +00:00
dconf # required by home-manager
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-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
mpv # video viewer
2023-06-03 18:26:41 +00:00
micro # text editor
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
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
];
}