2022-09-20 00:51:38 +02:00
|
|
|
{ device ? (import devices/gl-ar750.nix)
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
overlay = import ./overlay.nix;
|
|
|
|
nixpkgs = import <nixpkgs> ( device.system // {overlays = [overlay]; });
|
2022-09-27 23:07:18 +02:00
|
|
|
inherit (nixpkgs.pkgs) callPackage writeText liminix;
|
2022-09-25 12:22:15 +02:00
|
|
|
config = (import ./merge-modules.nix) [
|
2022-09-25 14:17:21 +02:00
|
|
|
./modules/base.nix
|
|
|
|
({ lib, ... } : { config = { inherit (device) kernel; }; })
|
2022-09-25 12:22:15 +02:00
|
|
|
<liminix-config>
|
2022-09-27 11:19:44 +02:00
|
|
|
./modules/s6
|
2022-09-28 22:31:15 +02:00
|
|
|
./modules/users.nix
|
2022-09-25 12:22:15 +02:00
|
|
|
] nixpkgs.pkgs;
|
2022-09-27 23:06:36 +02:00
|
|
|
squashfs = liminix.builders.squashfs config.filesystem.contents;
|
2022-09-27 17:06:54 +02:00
|
|
|
kernel = callPackage ./kernel {
|
|
|
|
inherit (config.kernel) config;
|
2022-09-25 23:02:45 +02:00
|
|
|
};
|
2022-09-20 19:54:27 +02:00
|
|
|
in {
|
|
|
|
outputs = {
|
|
|
|
inherit squashfs kernel;
|
2022-09-21 00:04:08 +02:00
|
|
|
default = nixpkgs.pkgs.runCommand "both-kinds" {} ''
|
|
|
|
mkdir $out
|
|
|
|
cd $out
|
|
|
|
ln -s ${squashfs} squashfs
|
|
|
|
ln -s ${kernel.vmlinux} vmlinux
|
|
|
|
'';
|
2022-09-27 23:07:18 +02:00
|
|
|
# this exists so that you can run "nix-store -q --tree" on it and find
|
|
|
|
# out what's in the image, which is nice if it's unexpectedly huge
|
|
|
|
manifest = writeText "manifest.json" (builtins.toJSON config.filesystem.contents);
|
2022-09-20 19:54:27 +02:00
|
|
|
};
|
2022-09-25 14:18:26 +02:00
|
|
|
# this is just here as a convenience, so that we can get a
|
|
|
|
# cross-compiling nix-shell for any package we're customizing
|
|
|
|
inherit (nixpkgs) pkgs;
|
2022-09-20 19:54:27 +02:00
|
|
|
}
|