nixos/base.nix

24 lines
365 B
Nix
Raw Normal View History

2024-12-18 18:19:37 -06:00
{ 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
tmux
psmisc
2025-03-09 14:46:38 -05:00
unzip
2024-12-18 18:19:37 -06:00
];
environment.variables.EDITOR = "vim";
2025-02-24 14:28:00 -06:00
programs.appimage.binfmt = true;
2024-12-18 18:19:37 -06:00
}