configuration.nix/home/laptop/packages/default.nix

49 lines
749 B
Nix
Raw Normal View History

2023-08-26 15:03:06 +02:00
{ pkgs, rootPath, ... }: {
2023-08-09 22:10:48 +02:00
home.packages = with pkgs; [
2023-08-26 15:03:06 +02:00
#scripts
(pkgs.buildEnv { name = "my-scripts"; paths = [ (rootPath + /scripts) ]; })
2023-08-09 23:40:02 +02:00
# wayland/sway stuff
2023-08-09 22:10:48 +02:00
bemenu
2023-08-09 23:40:02 +02:00
wl-clipboard
wayland
mako
grim
slurp
# programs
2023-08-09 22:10:48 +02:00
brave
2023-08-09 23:40:02 +02:00
firefox-devedition-bin
tor-browser-bundle-bin
gnome.cheese
gimp
2023-08-26 15:03:06 +02:00
mpv
2023-08-27 19:50:34 +02:00
transmission
2023-08-09 23:40:02 +02:00
# cli utils
2023-08-09 22:10:48 +02:00
direnv
2023-08-09 23:40:02 +02:00
ripgrep
mupdf
2023-08-09 22:10:48 +02:00
gopass
gopass-jsonapi
pavucontrol
2023-08-20 21:24:15 +02:00
bat
2023-08-21 21:05:55 +02:00
trashy
2023-08-26 15:03:06 +02:00
yewtube
2023-08-09 23:40:02 +02:00
# programming
2023-08-09 22:10:48 +02:00
nixfmt
sqlite
tectonic
ffmpeg
nodePackages_latest.pnpm
rustup
2023-08-09 23:40:02 +02:00
poetry
lolcat
deno
nodejs_20
python311
python311Packages.pip
2023-08-09 23:40:02 +02:00
# misc
piper
xdg-utils
2023-08-09 23:40:02 +02:00
xdg-user-dirs
2023-08-09 22:10:48 +02:00
];
}