nixos/base.nix
2025-05-16 13:05:21 -05:00

32 lines
486 B
Nix

{ pkgs, ... }:
{
services = {
openssh.enable = true;
fwupd.enable = true;
};
security.sudo.wheelNeedsPassword = false;
users.mutableUsers = false;
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
file
vim
curl
wget
git
tmux
psmisc
unzip
];
environment.variables.EDITOR = "vim";
programs.appimage.binfmt = true;
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
};
}