42 lines
902 B
Nix
42 lines
902 B
Nix
{
|
|
device
|
|
, liminix-config ? <liminix-config>
|
|
, phram ? false
|
|
, nixpkgs ? <nixpkgs>
|
|
}:
|
|
|
|
let
|
|
overlay = import ./overlay.nix;
|
|
pkgs = import nixpkgs (device.system // {
|
|
overlays = [overlay];
|
|
config = {allowUnsupportedSystem = true; };
|
|
});
|
|
|
|
config = (import ./merge-modules.nix) [
|
|
./modules/base.nix
|
|
device.module
|
|
liminix-config
|
|
./modules/s6
|
|
./modules/users.nix
|
|
(if phram then ./modules/phram.nix else (args: {}))
|
|
./modules/outputs.nix
|
|
] pkgs;
|
|
|
|
in {
|
|
outputs = config.outputs // {
|
|
default = config.outputs.${config.device.defaultOutput};
|
|
};
|
|
|
|
# this is just here as a convenience, so that we can get a
|
|
# cross-compiling nix-shell for any package we're customizing
|
|
inherit pkgs;
|
|
|
|
buildEnv = pkgs.mkShell {
|
|
packages = with pkgs.pkgsBuildBuild; [
|
|
tufted
|
|
routeros.routeros
|
|
routeros.ros-exec-script
|
|
mips-vm
|
|
];
|
|
};
|
|
}
|