1
0
liminix/tests/min-copy-closure/configuration.nix

35 lines
678 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}:
2023-05-07 21:02:10 +00:00
let
inherit (pkgs) dropbear;
2024-06-29 21:59:27 +00:00
inherit (pkgs.liminix.services) longrun;
in
{
2023-05-07 21:02:10 +00:00
imports = [
../../vanilla-configuration.nix
2023-12-10 17:12:57 +00:00
../../modules/outputs/jffs2.nix
2023-05-07 21:02:10 +00:00
];
config = {
2023-05-07 21:02:10 +00:00
services.sshd = longrun {
name = "sshd";
run = ''
mkdir -p /run/dropbear
${dropbear}/bin/dropbear -E -P /run/dropbear.pid -R -F
'';
2023-05-07 21:02:10 +00:00
};
users.root = {
passwd = lib.mkForce "$6$GYDbeLSyoIdgDdZW$EXlz4oI7Jz1igSYd4cxwcWR4lqEc5AWdGWuPuBarQeUskFQsBCpPc0GgIPPDl1k7SgrnC82JzSWxvx5o0bvmx/";
openssh.authorizedKeys.keys = [
(builtins.readFile ./id.pub)
];
};
rootfsType = "jffs2";
};
}