mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
25 lines
385 B
Nix
25 lines
385 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkForce;
|
|
in {
|
|
arch = "x86_64";
|
|
type = "NixOS";
|
|
modules = mkForce [
|
|
./nixos.nix
|
|
];
|
|
builder = mkForce ({
|
|
modules,
|
|
system,
|
|
specialArgs,
|
|
...
|
|
}:
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
inherit modules system;
|
|
specialArgs = {
|
|
extern'test'inputs = specialArgs.inputs;
|
|
};
|
|
});
|
|
}
|