Files
nixos-config/packages.nix
2023-11-27 22:34:44 +00:00

85 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
# Allow proprietary packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget
git
stow
sudo
ncdu
gzip
unar
unzip
dd
zsh
# Build toolchains
autoconf
automake
gnumake
scons
cmake
gcc8
clang
clang-analyzer
clang-manpages
clang-tools
rustc
python37
nodejs_20
# GUI tools
kicad
xfce.thunar
# Media
ffmpeg-full
gstreamer
gst-plugins-base
gst-plugins-bad
gst-plugins-ugly
gst-plugins-good
# IDEs
neovim
vscode
# Hyprland deps
waybar
wofi
# Ricing apps
spotify-qt
cava
# Ricing Themes
tokyo-night-gtk
# Desktop
material-icons
neofetch
xorg.xmodmap
xorg.xset
xorg.xsetroot
terminus_font
terminus_font_ttf
dejavu_fonts
jetbrains-mono
inriafonts
iosevka
firefox
google-chrome
alacritty
hyprland
ncmpcpp
powerline-fonts
];
}