nixos/home/packages/default.nix
Torjus Håkestad 4e8081d566
All checks were successful
Run nix flake check / flake-check (push) Successful in 3m21s
Periodic flake update / flake-update (push) Successful in 2m22s
Remove some unused packages
2025-07-01 23:16:42 +02:00

114 lines
1.5 KiB
Nix

{ pkgs, osConfig, ... }:
let
withCuda = if (osConfig.system.name == "gunter") then true else false;
in
{
imports = [
./zoom.nix
./tacl.nix
];
home.packages = with pkgs; [
# CLI utils
age
bat
bzip2
chromium
croc
devenv
distrobox
dust
easyeffects
eza
fd
ffmpeg
file
fzf
grimblast
ijq
jellyfin-media-player
jq
kitty
kubectl
lazygit
lf
ncdu
nvd
nurl
nwg-look
most
pinentry
pulseaudio
pulsemixer
rbw
restic
ripgrep
sidequest
sops
sshfs
step-cli
tea
tldr
tokei
unzip
wtype
# Non-CLI stuff
alacritty
discord
feh
krita
mpv
mumble
pamixer
pwvucontrol
prismlauncher
rofi-rbw-wayland
spotify
virt-manager
vmware-horizon-client
yt-dlp
# Go stuff
go
gopls
delve
# Py stuff
(python312.withPackages (
p: with p; [
requests
ipython
]
))
uv
ruff
# rust stuff
rustc
cargo
rust-analyzer
# Homemade shit
ghettoptt
huecli
nixprstatus
# Stuff with overrides
(btop.override { cudaSupport = withCuda; })
# Extract logcli from grafana-loki
(pkgs.linkFarm "logcli" [
{
name = "bin/logcli";
path = "${pkgs.grafana-loki}/bin/logcli";
}
])
(lutris.override {
extraLibraries = pkgs: [
nspr
xorg.libXdamage
];
})
];
}