chore: nf-fmt-nix

This commit is contained in:
arcnmx 2024-05-13 15:13:58 -07:00
parent 7486517713
commit 9903866044
160 changed files with 4570 additions and 3019 deletions

View file

@ -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;
};
});
}