aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/op
diff options
context:
space:
mode:
Diffstat (limited to 'modules/by-name/op')
-rw-r--r--modules/by-name/op/openssh/module.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/by-name/op/openssh/module.nix b/modules/by-name/op/openssh/module.nix
new file mode 100644
index 0000000..30d16a6
--- /dev/null
+++ b/modules/by-name/op/openssh/module.nix
@@ -0,0 +1,31 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.vhack.openssh;
+in {
+ options.vhack.openssh = {
+ enable = lib.mkEnableOption ''
+ a sane openssh implementation.
+ '';
+ };
+
+ config = lib.mkIf cfg.enable {
+ services.openssh = {
+ enable = true;
+ settings.PasswordAuthentication = false;
+ hostKeys = [
+ {
+ # See the explanation for this in /system/impermanence/mods/openssh.nix
+ # path = "/var/lib/sshd/ssh_host_ed25519_key";
+
+ # FIXME: Remove this workaround
+ path = "/srv/var/lib/sshd/ssh_host_ed25519_key";
+ rounds = 1000;
+ type = "ed25519";
+ }
+ ];
+ };
+ };
+}