This commit is contained in:
2025-07-17 19:28:12 +09:00
commit ecb8bc951f
23 changed files with 709 additions and 0 deletions

6
pkgs/fonts.nix Normal file
View File

@@ -0,0 +1,6 @@
# font as an art
{ pkgs, ... }:
with pkgs;
[ nanum ]

8
pkgs/minecraft.nix Normal file
View File

@@ -0,0 +1,8 @@
# execute as @e[type=minecraft:cow] at @s summon minecraft:cow run summon minecraft:cow
{ pkgs, ... }:
with pkgs; [
prismlauncher
craftos-pc
]

17
pkgs/misc.nix Normal file
View File

@@ -0,0 +1,17 @@
# some misc packages
{ pkgs, ... }:
with pkgs; [
cowsay
file
which
htop
tree
gnused
gnutar
pango
libsoup_3
gawk
zstd
gnupg
]

22
pkgs/network.nix Normal file
View File

@@ -0,0 +1,22 @@
# network tools. maybe with some basic hacking tools.
{ pkgs, ... }:
with pkgs; [
mtr
iperf3
dnsutils
ldns
aria2
socat
nmap
ipcalc
wireshark
subfinder
termshark
tcpdump
whois
inetutils
asn
metasploit
]

33
pkgs/programming.nix Normal file
View File

@@ -0,0 +1,33 @@
# abstraction is beautiful.
{ pkgs, ... }:
with pkgs; [
radare2
python311Full
uv
unityhub
nodejs
go
binwalk
dotnet-sdk_9
csharp-ls
gcc
cmake
gnumake
ninja
graalvmPackages.graalvm-ce
pnpm
rustup
go-task
dive
podman-tui
k3s
kind
podman-compose
ghc
haskellPackages.stack
haskellPackages.hpack
haskellPackages.cabal-install
haskellPackages.haskell-language-server
]

22
pkgs/tools.nix Normal file
View File

@@ -0,0 +1,22 @@
# out-of-the-box cli tools
{ pkgs, ... }:
with pkgs; [
vesktop
youtube-music
thunderbird
yt-dlp
stellarium
blender
blockbench
jetbrains.idea-ultimate
krita
barrier
obsidian
audacity
bitwarden
texlive.combined.scheme-full
hugo
glow
]

50
pkgs/util.nix Normal file
View File

@@ -0,0 +1,50 @@
# various linux cli util
{ pkgs, ... }:
with pkgs; [
neofetch
nnn # terminal file manager
# archives
zip
xz
zlib
unzip
p7zip
# utils
xclip
openssl
ffmpeg
cloc
piper-tts
pavucontrol
ripgrep
jq
yq-go
git-credential-oauth
git-credential-manager
git-filter-repo
eza
sox
fzf
nix-output-monitor
nix-index
btop
iotop
iftop
strace
ltrace
lsof
sysstat
lm_sensors
ethtool
pciutils
usbutils
gpick
]