flake-config/modules/pkgs.nix
2025-11-09 23:51:40 -05:00

18 lines
287 B
Nix

{ pkgs, ... }:
{
# just a bunch of default packages that I use
environment.systemPackages = with pkgs; [
curl
git
htop
neovim
progress
tmux
tree
unzip
zmotd
];
security.sudo.execWheelOnly = true;
security.sudo.wheelNeedsPassword = false;
}