mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
15 lines
347 B
Nix
15 lines
347 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;
|
|
};
|
|
});
|
|
}
|