liminix/make-image.nix

53 lines
1.5 KiB
Nix
Raw Normal View History

2022-09-26 15:19:14 +00:00
{
stdenv
, busybox
, buildPackages
, callPackage
, pseudofile
2022-09-26 15:19:14 +00:00
, runCommand
, writeText
} : config :
let
pseudofiles = writeText "pseudofiles" ''
/ d 0755 0 0
/bin d 0755 0 0
/etc d 0755 0 0
/run d 0755 0 0
/dev d 0755 0 0
/dev/null c 0666 root root 1 3
/dev/zero c 0666 root root 1 5
/dev/tty1 c 0777 root root 4 1
/dev/tty2 c 0777 root root 4 2
/dev/tty3 c 0777 root root 4 3
/dev/tty4 c 0777 root root 4 4
/dev/tty c 0777 root root 5 0
/dev/console c 0600 root root 5 1
/proc d 0555 root root
/sys d 0555 root root
/dev/pts d 0755 0 0
/etc/init.d d 0755 0 0
2022-09-26 15:19:14 +00:00
/bin/sh s 0755 0 0 ${busybox}/bin/sh
/bin/busybox s 0755 0 0 ${busybox}/bin/busybox
'';
config-pseudofiles = pseudofile.write "config.etc"
(config.environment.contents);
storefs = callPackage <nixpkgs/nixos/lib/make-squashfs.nix> {
# add pseudofiles as packages to store so that the packages they
2022-09-26 14:59:21 +00:00
# depend on are also added
storeContents = [
pseudofiles
config-pseudofiles
] ++ config.packages ;
};
in runCommand "frob-squashfs" {
2022-09-26 15:19:14 +00:00
nativeBuildInputs = with buildPackages; [ squashfsTools qprint ];
} ''
cp ${storefs} ./store.img
chmod +w store.img
mksquashfs - store.img -no-recovery -quiet -no-progress -root-becomes store -p "/ d 0755 0 0"
2022-09-27 09:19:44 +00:00
mksquashfs - store.img -no-recovery -quiet -no-progress -root-becomes nix -pf ${pseudofiles} -pf ${config-pseudofiles}
cp store.img $out
''