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