Initial commit.
This commit is contained in:
commit
67823cbed6
51 changed files with 1714 additions and 0 deletions
21
base.nix
Normal file
21
base.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.openssh.enable = true;
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
users.mutableUsers = false;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
file
|
||||
vim
|
||||
curl
|
||||
wget
|
||||
git
|
||||
git-crypt
|
||||
tmux
|
||||
psmisc
|
||||
];
|
||||
|
||||
environment.variables.EDITOR = "vim";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue