dotfiles/systems/x86_64-do/minimal/default.nix
alejandro-angulo 79228d7815
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
feat: deploy forgejo publicly
2024-10-30 19:30:16 -07:00

23 lines
336 B
Nix

{...}: {
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";
}