Tidy package list
Some checks failed
pre-commit / pre-commit (push) Failing after 18s

This commit is contained in:
Torjus Håkestad 2024-07-04 21:26:15 +02:00
parent a68be8ca90
commit 5e1932a2b3

View File

@ -1,89 +1,72 @@
{ pkgs, osConfig, ... }:
let
my-pomodoro = pkgs.callPackage ../../packages/open-pomodoro.nix { };
withCuda = if (osConfig.system.name == "gunter") then true else false;
in
{
home.packages = with pkgs; [
# My own packages
my-pomodoro
# Generic tools
# CLI utils
age
alacritty
bat
# btop
(btop.override {
cudaSupport = withCuda;
})
bzip2
croc
devenv
distrobox
dust
easyeffects
eza
fd
feh
ffmpeg
file
fzf
go-task
glib
go-task
grimblast
ijq
incus
jq
ijq
kitty
kubectl
krita
ncdu
nwg-look
mumble
mpv
nvd
pamixer
nwg-look
pinentry
pre-commit
(prismlauncher.override {
withWaylandGLFW = true;
})
pulseaudio
pulsemixer
rbw
restic
ripgrep
rofi-rbw-wayland
sops
spotify
spicetify-cli
sshfs
tldr
devenv
ventoy
virt-manager
discord
zoxide
# k8s tools
talosctl
k9s
cilium-cli
kubernetes-helm
cmctl
krew
# steam
# steam-run
# steamcmd
# gamescope
tokei
unzip
ventoy
zoxide
# Non-CLI stuff
alacritty
discord
feh
krita
mpv
mumble
pamixer
rofi-rbw-wayland
spicetify-cli
spotify
virt-manager
vmware-horizon-client
yt-dlp
zoom-us
vmware-horizon-client
# Editors
# vscode
# k8s tools
cilium-cli
cmctl
k9s
krew
kubernetes-helm
talosctl
# Go stuff
go
@ -108,13 +91,22 @@ in
cargo
rust-analyzer
# blender
(blender.override {
cudaSupport = withCuda;
})
# Homemade shit
ghettoptt
huecli
# Stuff with overrides
# Blender
(blender.override {
cudaSupport = withCuda;
})
# Btop
(btop.override {
cudaSupport = withCuda;
})
# PrismLauncher
(prismlauncher.override {
withWaylandGLFW = true;
})
];
}