nix-conf/system/modules/packages.nix
2024-12-14 01:20:22 +08:00

53 lines
803 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Browser
firefox
opera
# Utils
bat
btop
eza
fzf
neofetch
ripgrep
tldr # Alternative for man
wget
unzip
p7zip
zip
glxinfo # OpenGL info
pciutils # PCI info
xdotool # Keyboard input simulation
ffmpeg # video encoding
# Dev
git
gnumake
lm_sensors
libsForQt5.qt5.qtquickcontrols2
libsForQt5.qt5.qtgraphicaleffects
libsForQt5.qt5.qtsvg
openssl
openssl.dev
pkg-config # Include Lib
# Editor
neovim
# Misc
xfce.thunar # File manager
# Portal
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
# Shell
zoxide # Dir jumper
starship # Shell theme
carapace # Autocomplete
];
}