nixos/modules/nixos/system-packages.nix
2026-03-08 15:48:23 -07:00

24 lines
370 B
Nix

{ pkgs, inputs, ... }:
{
programs.firefox.enable = true;
programs.hyprland.enable = true;
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
# neovim
tree
vim # Both vim and neovim just in case
wget
git
gcc
fastfetch
brightnessctl
killall
unzip
python3
nodejs
];
}