24 lines
387 B
Nix
24 lines
387 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
|
|
|
|
# mmmm terminfo
|
|
foot.terminfo
|
|
ghostty.terminfo
|
|
kitty.terminfo
|
|
termite.terminfo
|
|
];
|
|
|
|
security.sudo.execWheelOnly = true;
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|