base: enable openssh in configuration.nix instead

This commit is contained in:
matthewcroughan 2022-07-13 07:40:23 +01:00
parent 9f153f5b6a
commit adfd8f4835
2 changed files with 2 additions and 5 deletions

View File

@ -18,11 +18,6 @@
})
];
# Enable ssh on boot
services = {
openssh.enable = true;
};
users = {
users.default = {
password = "visionfive-nix";

View File

@ -1,4 +1,6 @@
{
# Enable ssh on boot
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 19999 ];
services.netdata.enable = true;
}