mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
chore: nf-fmt-nix
This commit is contained in:
parent
7486517713
commit
9903866044
160 changed files with 4570 additions and 3019 deletions
|
|
@ -1,4 +1,8 @@
|
|||
{ inputs, lib, ... }: let
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkForce;
|
||||
in {
|
||||
arch = "x86_64";
|
||||
|
|
@ -6,10 +10,16 @@ in {
|
|||
modules = mkForce [
|
||||
./nixos.nix
|
||||
];
|
||||
builder = mkForce ({ modules, system, specialArgs, ... }: inputs.nixpkgs.lib.nixosSystem {
|
||||
inherit modules system;
|
||||
specialArgs = {
|
||||
extern'test'inputs = specialArgs.inputs;
|
||||
};
|
||||
});
|
||||
builder = mkForce ({
|
||||
modules,
|
||||
system,
|
||||
specialArgs,
|
||||
...
|
||||
}:
|
||||
inputs.nixpkgs.lib.nixosSystem {
|
||||
inherit modules system;
|
||||
specialArgs = {
|
||||
extern'test'inputs = specialArgs.inputs;
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue