2023-06-14 03:54:55 +03:00
|
|
|
let
|
|
|
|
outputs = builtins.getFlake (toString ./.);
|
2023-06-15 22:06:44 +03:00
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import outputs.inputs.nixpkgs { inherit system; };
|
|
|
|
host-workstation = (pkgs.callPackage ./scripts/force_cached.nix {}) outputs.packages.x86_64-linux.host-workstation;
|
|
|
|
host-hypervisor = (pkgs.callPackage ./scripts/force_cached.nix {}) outputs.packages.x86_64-linux.host-hypervisor;
|
|
|
|
in host-workstation // host-hypervisor
|