blob: a6362157af7c7c2cb333a9aa83a1edbf44cebc8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
inputs,
pkgs,
...
}: {
environment.systemPackages = with pkgs; [
moreutils
alejandra
# nixfmt
#
busybox
usbutils
xdg-utils
rlwrap
wget
htop
btop
bat
gitAndTools.gitFull
lazygit
git-lfs
lsd
lsof
tmux
socat
tmate
curlFull
ripgrep
ranger
minio
minio-client
zip
unzip
jq
vifm
nnn
fzf
killall
tree
qrcp
deluge
ncdu
edir
bottom
pigz
rclone
gparted
autossh
#hardware problems
lm_sensors
linuxKernel.packages.linux_hardened.cpupower
# linuxKernel.packages.linux_latest_libre.cpupower
# images
imagemagick
sxiv
# audio debug
alsa-firmware
# wine
#wineWowPackages.staging
#wineWowPackages.waylandFull
appimage-run
# code
nil
direnv
nix-direnv
# devenv
inputs.devenv.packages.${pkgs.system}.default
# scraping
python312Packages.yt-dlp
# markdown lsp
marksman
# disk automount
udiskie
#crypto
# electrum
# yacreader
nethogs
superhtml
sxiv
# ai stuff!
# aider-chat
yek
# python312Packages.google-generativeai
];
}
|