initial commit
This commit is contained in:
commit
4014d5e658
30 changed files with 911 additions and 0 deletions
18
modules/pkgs.nix
Normal file
18
modules/pkgs.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue