configuration.nix/home/laptop/packages/default.nix
2023-08-26 16:03:06 +03:00

48 lines
732 B
Nix

{ pkgs, rootPath, ... }: {
home.packages = with pkgs; [
#scripts
(pkgs.buildEnv { name = "my-scripts"; paths = [ (rootPath + /scripts) ]; })
# wayland/sway stuff
bemenu
wl-clipboard
wayland
mako
grim
slurp
# programs
brave
firefox-devedition-bin
tor-browser-bundle-bin
gnome.cheese
gimp
mpv
# cli utils
direnv
ripgrep
mupdf
gopass
gopass-jsonapi
pavucontrol
bat
trashy
yewtube
# programming
nixfmt
sqlite
tectonic
ffmpeg
nodePackages_latest.pnpm
rustup
poetry
lolcat
deno
nodejs_20
python311
python311Packages.pip
# misc
piper
xdg-utils
xdg-user-dirs
];
}