entrypoint: just wire up celun for system computation and kernel
parent
37793ce3f6
commit
59c5ffbda6
@ -0,0 +1,7 @@
|
|||||||
|
let
|
||||||
|
commit = "f4e681b896aae165506b7963eb6ac6d6c032145f";
|
||||||
|
sha256 = "0mwqzinvacb8xd5wdv13l2b481n8xzm9dvh07ghs5pgifspi7skw";
|
||||||
|
in builtins.fetchTarball {
|
||||||
|
url = "https://github.com/samueldr/celun/archive/${commit}.tar.gz";
|
||||||
|
inherit sha256;
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
{ lib, ... }: {
|
||||||
|
wip.stage-1.compression = lib.mkDefault "xz";
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
{ celun, device }@args:
|
||||||
|
|
||||||
|
import (celun + "/lib/eval-with-configuration.nix") ((builtins.removeAttrs args [ "celun" ]) // {
|
||||||
|
inherit device;
|
||||||
|
verbose = true;
|
||||||
|
configuration = {
|
||||||
|
imports = [
|
||||||
|
./configuration.nix
|
||||||
|
(
|
||||||
|
{ lib, ... }:
|
||||||
|
{
|
||||||
|
# celun.system.automaticCross = lib.mkDefault true;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue