2023-11-23 20:02:21 +00:00
|
|
|
{
|
2024-06-30 15:58:29 +00:00
|
|
|
writeScriptBin,
|
|
|
|
writeScript,
|
|
|
|
systemconfig,
|
|
|
|
execline,
|
|
|
|
lib,
|
|
|
|
config ? { },
|
|
|
|
liminix,
|
|
|
|
pseudofile,
|
|
|
|
pkgs,
|
|
|
|
}:
|
2023-11-23 20:02:21 +00:00
|
|
|
let
|
|
|
|
inherit (pseudofile) dir symlink;
|
|
|
|
inherit (liminix.services) oneshot;
|
2024-04-29 18:58:25 +00:00
|
|
|
paramConfig = config;
|
2023-11-23 20:02:21 +00:00
|
|
|
newRoot = "/run/maintenance";
|
|
|
|
sysconfig =
|
|
|
|
let
|
2024-06-30 15:58:29 +00:00
|
|
|
doChroot = writeScript "exec" ''
|
2023-11-23 20:02:21 +00:00
|
|
|
#!${execline}/bin/execlineb -P
|
|
|
|
cd ${newRoot}
|
|
|
|
foreground { mount --move ${newRoot} / }
|
|
|
|
redirfd -r 0 /dev/console
|
|
|
|
redirfd -w 1 /dev/console
|
|
|
|
fdmove -c 2 1
|
|
|
|
emptyenv chroot . /bin/init
|
|
|
|
'';
|
2025-02-10 21:55:08 +00:00
|
|
|
base =
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
services = {
|
|
|
|
banner = oneshot {
|
|
|
|
name = "banner";
|
|
|
|
up = "cat /etc/banner > /dev/console";
|
|
|
|
down = "true";
|
|
|
|
};
|
2023-11-23 20:02:21 +00:00
|
|
|
};
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
filesystem = dir {
|
|
|
|
exec = symlink doChroot;
|
|
|
|
etc = dir {
|
|
|
|
banner = symlink (
|
|
|
|
pkgs.writeText "banner" ''
|
2023-11-23 20:02:21 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
LADIES AND GENTLEMEN WE ARE FLOATING IN SPACE
|
2023-11-23 20:02:21 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
Most services are disabled. The system is operating
|
|
|
|
with a ram-based root filesystem, making it safe to
|
|
|
|
overwrite the flash devices in order to perform
|
|
|
|
upgrades and maintenance.
|
2023-11-23 20:02:21 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
Don't forget to reboot when you have finished.
|
2023-11-23 20:02:21 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
''
|
|
|
|
);
|
|
|
|
};
|
2023-11-23 20:02:21 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
eval = lib.evalModules {
|
|
|
|
modules = [
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
_module.args = {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) lim;
|
|
|
|
};
|
|
|
|
}
|
2023-11-23 20:02:21 +00:00
|
|
|
../../modules/base.nix
|
|
|
|
../../modules/users.nix
|
|
|
|
../../modules/busybox.nix
|
|
|
|
base
|
2025-02-10 21:55:08 +00:00
|
|
|
({ ... }: paramConfig)
|
|
|
|
(
|
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
logging.script = "t";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
)
|
2023-11-23 20:02:21 +00:00
|
|
|
../../modules/s6
|
|
|
|
];
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
systemconfig eval.config.filesystem.contents;
|
|
|
|
in
|
|
|
|
writeScriptBin "levitate" ''
|
2023-11-23 20:02:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
destdir=${newRoot}
|
|
|
|
mkdir -p $destdir $destdir/nix/store
|
|
|
|
for path in $(cat ${sysconfig}/etc/nix-store-paths) ; do
|
|
|
|
(cd $destdir && cp -a $path .$path)
|
|
|
|
done
|
|
|
|
${sysconfig}/bin/activate $destdir
|
|
|
|
''
|