forked from DGNum/liminix
make liminix-config a parameter with default
this is for hydra
This commit is contained in:
parent
38cc3315b9
commit
e6a173f71c
2 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,8 @@ let
|
||||||
# jobset configuration.
|
# jobset configuration.
|
||||||
pkgs = (import <nixpkgs> {});
|
pkgs = (import <nixpkgs> {});
|
||||||
device = import <liminix/devices/qemu>;
|
device = import <liminix/devices/qemu>;
|
||||||
liminix = import <liminix> { inherit device; };
|
liminix-config = import <liminix/tests/smoke/configuration.nix>;
|
||||||
|
liminix = import <liminix> { inherit device liminix-config; };
|
||||||
in {
|
in {
|
||||||
inherit (liminix.outputs) squashfs;
|
inherit (liminix.outputs) squashfs;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
device ? (import devices/gl-ar750.nix)
|
device ? (import devices/gl-ar750.nix)
|
||||||
|
, liminix-config ? <liminix-config>
|
||||||
, phram ? false
|
, phram ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -11,7 +12,7 @@ let
|
||||||
config = (import ./merge-modules.nix) [
|
config = (import ./merge-modules.nix) [
|
||||||
./modules/base.nix
|
./modules/base.nix
|
||||||
({ lib, ... } : { config = { inherit (device) kernel; }; })
|
({ lib, ... } : { config = { inherit (device) kernel; }; })
|
||||||
<liminix-config>
|
liminix-config
|
||||||
./modules/s6
|
./modules/s6
|
||||||
./modules/users.nix
|
./modules/users.nix
|
||||||
(if phram then ./modules/phram.nix else (args: {}))
|
(if phram then ./modules/phram.nix else (args: {}))
|
||||||
|
|
Loading…
Reference in a new issue