dotfiles/systems/x86_64-do/minimal/default.nix

23 lines
336 B
Nix
Raw Normal View History

2024-10-31 02:30:16 +00:00
{...}: {
aa = {
nix.enable = true;
services = {
openssh.enable = true;
};
};
networking.firewall.allowedTCPPorts = [
# SSH
22
];
virtualisation.digitalOcean = {
setRootPassword = true;
setSshKeys = true;
};
security.sudo.wheelNeedsPassword = false;
system.stateVersion = "24.05";
}