2022-10-06 23:24:35 +00:00
|
|
|
{
|
2024-06-30 15:58:29 +00:00
|
|
|
deviceName ? null,
|
|
|
|
device ? (import ./devices/${deviceName}),
|
|
|
|
liminix-config ? <liminix-config>,
|
|
|
|
borderVmConf ? ./bordervm.conf.nix,
|
|
|
|
imageType ? "primary",
|
2022-09-19 22:51:38 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
overlay = import ./overlay.nix;
|
2024-10-06 14:55:01 +00:00
|
|
|
pkgs = import <nixpkgs> (
|
2024-06-30 15:58:29 +00:00
|
|
|
device.system
|
|
|
|
// {
|
|
|
|
overlays = [ overlay ];
|
|
|
|
config = {
|
|
|
|
allowUnsupportedSystem = true; # mipsel
|
|
|
|
permittedInsecurePackages = [
|
|
|
|
"python-2.7.18.6" # kernel backports needs python <3
|
|
|
|
"python-2.7.18.7"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
2023-02-10 23:10:44 +00:00
|
|
|
|
2023-11-09 19:29:36 +00:00
|
|
|
eval = pkgs.lib.evalModules {
|
2024-03-17 19:03:44 +00:00
|
|
|
specialArgs = {
|
|
|
|
modulesPath = builtins.toString ./modules;
|
|
|
|
};
|
2023-02-16 17:22:27 +00:00
|
|
|
modules = [
|
2023-11-05 15:13:06 +00:00
|
|
|
{ _module.args = { inherit pkgs; inherit (pkgs) lim; }; }
|
2023-03-03 20:04:39 +00:00
|
|
|
./modules/hardware.nix
|
2023-02-16 17:22:27 +00:00
|
|
|
./modules/base.nix
|
2023-03-10 18:40:45 +00:00
|
|
|
./modules/busybox.nix
|
2023-03-08 22:11:59 +00:00
|
|
|
./modules/hostname.nix
|
2024-04-28 11:44:27 +00:00
|
|
|
./modules/kernel
|
2024-10-16 17:59:42 +00:00
|
|
|
./modules/klogd.nix
|
2023-02-16 17:22:27 +00:00
|
|
|
device.module
|
|
|
|
liminix-config
|
|
|
|
./modules/s6
|
|
|
|
./modules/users.nix
|
|
|
|
./modules/outputs.nix
|
2024-02-19 01:48:15 +00:00
|
|
|
{
|
|
|
|
boot.imageType = imageType;
|
|
|
|
}
|
2023-02-16 17:22:27 +00:00
|
|
|
];
|
2023-11-09 19:29:36 +00:00
|
|
|
};
|
|
|
|
config = eval.config;
|
2022-10-05 20:52:30 +00:00
|
|
|
|
2023-02-15 21:21:52 +00:00
|
|
|
borderVm = ((import <nixpkgs/nixos/lib/eval-config.nix>) {
|
|
|
|
system = builtins.currentSystem;
|
|
|
|
modules = [
|
2024-05-22 17:44:12 +00:00
|
|
|
{
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(final: prev: {
|
|
|
|
go-l2tp = final.callPackage ./pkgs/go-l2tp {};
|
|
|
|
tufted = final.callPackage ./pkgs/tufted {};
|
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|
2023-02-15 21:21:52 +00:00
|
|
|
(import ./bordervm-configuration.nix)
|
2023-02-20 17:46:07 +00:00
|
|
|
borderVmConf
|
2023-02-15 21:21:52 +00:00
|
|
|
];
|
2023-02-14 22:08:52 +00:00
|
|
|
}).config.system;
|
2022-10-03 21:28:15 +00:00
|
|
|
in {
|
2023-07-13 18:24:59 +00:00
|
|
|
outputs = config.system.outputs // {
|
|
|
|
default = config.system.outputs.${config.hardware.defaultOutput};
|
2023-11-09 19:29:36 +00:00
|
|
|
optionsJson =
|
|
|
|
let o = import ./doc/extract-options.nix {
|
|
|
|
inherit pkgs eval;
|
|
|
|
lib = pkgs.lib;
|
|
|
|
};
|
|
|
|
in pkgs.writeText "options.json" (builtins.toJSON o);
|
2023-02-10 23:10:44 +00:00
|
|
|
};
|
2022-10-03 21:28:15 +00:00
|
|
|
|
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
|
2023-02-06 23:19:35 +00:00
|
|
|
inherit pkgs;
|
2023-02-08 00:03:37 +00:00
|
|
|
|
2023-02-08 18:10:11 +00:00
|
|
|
buildEnv = pkgs.mkShell {
|
|
|
|
packages = with pkgs.pkgsBuildBuild; [
|
|
|
|
tufted
|
|
|
|
routeros.routeros
|
|
|
|
routeros.ros-exec-script
|
2023-09-20 17:33:08 +00:00
|
|
|
run-liminix-vm
|
2023-02-14 22:08:52 +00:00
|
|
|
borderVm.build.vm
|
|
|
|
go-l2tp
|
2023-05-11 22:53:25 +00:00
|
|
|
min-copy-closure
|
2023-07-04 21:58:51 +00:00
|
|
|
fennelrepl
|
2024-01-23 11:56:34 +00:00
|
|
|
lzma
|
2024-04-06 11:30:41 +00:00
|
|
|
lua
|
2023-02-08 18:10:11 +00:00
|
|
|
];
|
|
|
|
};
|
2022-09-20 17:54:27 +00:00
|
|
|
}
|