From 763a71c93f72637c3676bbc4c8dcdf19130ffc2d Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Tue, 14 May 2024 14:08:21 +0200 Subject: [PATCH] initrd-ssh: fix shell --- modules/core/initrd-ssh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/initrd-ssh.nix b/modules/core/initrd-ssh.nix index 9fc5824..a244b21 100644 --- a/modules/core/initrd-ssh.nix +++ b/modules/core/initrd-ssh.nix @@ -6,14 +6,14 @@ { config, ... }: { boot.initrd = { - availableKernelModules = ["mlx5_core"]; + availableKernelModules = [ "mlx5_core" ]; systemd = { enable = true; network = { enable = true; networks."10-wired-default" = config.systemd.network.networks."10-wired-default"; }; - users.root.shell = "/bin/zfs load-key rpool/nixos"; + users.root.shell = "/bin/systemd-tty-ask-password-agent"; }; network = { enable = true;