nixos/home/packages/default.nix
Torjus Håkestad d5d12e79d8
Some checks failed
pre-commit / pre-commit (push) Failing after 13m10s
Add pomodoro timer package
2024-03-27 10:07:48 +01:00

93 lines
1.2 KiB
Nix

{ pkgs, ... }:
let
my-pomodoro = pkgs.callPackage ../../packages/open-pomodoro.nix { };
in
{
home.packages = with pkgs; [
# My own packages
my-pomodoro
# Generic tools
age
alacritty
(unstable.btop.override {
cudaSupport = true;
})
bzip2
croc
easyeffects
fd
ffmpeg
file
go-task
glib
jq
kitty
kubectl
ncdu
nwg-look
mumble
mpv
pamixer
pinentry
pre-commit
pulseaudio
pulsemixer
rbw
restic
ripgrep
rofi-rbw-wayland
sops
spotify
spicetify-cli
sshfs
unstable.ventoy
discord
# k8s tools
unstable.talosctl
unstable.k9s
unstable.cilium-cli
unstable.kubernetes-helm
unstable.cmctl
unstable.krew
# steam
# steam-run
# steamcmd
# gamescope
tokei
unzip
yt-dlp
unstable.zoom-us
unstable.vmware-horizon-client
# Editors
# vscode
# Go stuff
go
delve
gopls
# js/ts
nodejs
nodePackages.pnpm
typescript
# Py stuff
(unstable.python312.withPackages (p: with p; [
requests
]))
poetry
ruff
# Rust
rustup
# Homemade shit
notlistener
ghettoptt
];
}