nix-conf/system/modules/packages.nix
danny 6a71b601f5 update: system update & refactor
# Breaking Changes
- sops location movod to "system/dev/<dev-name>/sops/sops-conf.nix"
- flake devices declaration changes
- whole flake update
2025-10-14 16:49:03 +08:00

59 lines
768 B
Nix

{
pkgs,
inputs,
system,
...
}:
{
environment.systemPackages = with pkgs; [
file
man-pages
man-pages-posix
stdmanpages
# Binary cache platform
cachix
# Utils
upower
jq
bat
btop
eza
fzf
neofetch
ripgrep
tree
tldr # Alternative for man
wget
unzip
p7zip
killall
zip
glxinfo # OpenGL info
pciutils # PCI info
xdotool # Keyboard input simulation
ffmpeg # Video encoding
mpv # Media player
brightnessctl
# Dev
git
gh # Github cli tool
gnumake
lm_sensors
pkg-config
nodejs
yarn-berry
rustup
gcc
zig
# Media
vlc
# Search nixpkgs util
inputs.nix-search-tv.packages.${system}.default
];
}