initial commit

This commit is contained in:
Squibid 2025-11-09 23:51:40 -05:00
commit 4014d5e658
Signed by: squibid
GPG key ID: BECE5684D3C4005D
30 changed files with 911 additions and 0 deletions

18
modules/pkgs.nix Normal file
View file

@ -0,0 +1,18 @@
{ 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;
}