Files
nixos-config/packages.nix
Elias Renman 27255e85e0 feat: swaylock
2023-11-30 15:11:11 +01:00

79 lines
1.0 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
zsh
# Build toolchains
autoconf
automake
gnumake
scons
cmake
gcc8
clang
clang-analyzer
clang-manpages
clang-tools
rustup
python38
nodejs_20
# GUI tools
kicad-small
xfce.thunar
google-chrome
alacritty
vlc
# CLI Tools
neofetch
bat
exa
gh
brightnessctl
hyprpaper
# Media
ffmpeg-full
# IDEs
neovim
vscode
# Hyprland deps
waybar
wofi
libsForQt5.sddm
wlogout
swaylock-effects
# Ricing apps
spotify-qt
cava
# Ricing Themes
tokyo-night-gtk
# Desktop
material-icons
xorg.xmodmap
xorg.xset
xorg.xsetroot
wlsunset
hyprland
];
}