1
0

dropbear would like /etc/shells to exist

This commit is contained in:
Daniel Barlow 2024-12-29 13:27:27 +00:00
parent 40db175b41
commit 4d273a9469

View File

@ -7,6 +7,7 @@
let
inherit (lib) mkOption types;
inherit (pkgs) liminix;
inherit (pkgs.pseudofile) dir file;
mkBoolOption = description : mkOption {
type = types.bool;
inherit description;
@ -20,6 +21,13 @@ in {
};
};
config.programs.busybox.options.FEATURE_FANCY_ECHO = "y";
config.filesystem = dir {
etc = dir {
shells = {
file = "/bin/sh\n";
};
};
};
config.system.service = {
ssh = config.system.callService ./ssh.nix {
address = mkOption {