liminix/default.nix

36 lines
1.2 KiB
Nix
Raw Normal View History

{ device ? (import devices/gl-ar750.nix)
}:
let
overlay = import ./overlay.nix;
nixpkgs = import <nixpkgs> ( device.system // {overlays = [overlay]; });
inherit (nixpkgs.pkgs) callPackage writeText liminix;
2022-09-25 10:22:15 +00:00
config = (import ./merge-modules.nix) [
./modules/base.nix
({ lib, ... } : { config = { inherit (device) kernel; }; })
2022-09-25 10:22:15 +00:00
<liminix-config>
2022-09-27 09:19:44 +00:00
./modules/s6
2022-09-28 20:31:15 +00:00
./modules/users.nix
2022-09-25 10:22:15 +00:00
] nixpkgs.pkgs;
squashfs = liminix.builders.squashfs config.filesystem.contents;
2022-09-27 15:06:54 +00:00
kernel = callPackage ./kernel {
inherit (config.kernel) config checkedConfig;
2022-09-25 21:02:45 +00:00
};
in {
outputs = {
inherit squashfs kernel;
default = nixpkgs.pkgs.runCommand "both-kinds" {} ''
mkdir $out
cd $out
ln -s ${squashfs} squashfs
ln -s ${kernel.vmlinux} vmlinux
'';
# 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-25 12:18:26 +00: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;
}