pinwheel: Move openssh service to ssh module

This commit is contained in:
Alexander Heldt
2023-10-16 22:30:17 +02:00
parent 71118d8309
commit 5718df21a5
2 changed files with 9 additions and 10 deletions

View File

@@ -104,16 +104,6 @@
liberation_ttf liberation_ttf
]; ];
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
hostKeys = [{
path = "/etc/ssh/pinwheel";
type = "ed25519";
}];
};
config-manager.flakePath = "/home/alex/config"; config-manager.flakePath = "/home/alex/config";
mod = { mod = {

View File

@@ -68,4 +68,13 @@
group = "users"; group = "users";
}; };
}; };
services.openssh = {
enable = true;
hostKeys = [{
path = "/etc/ssh/pinwheel";
type = "ed25519";
}];
};
} }