Reorder module arguments again

This commit is contained in:
SebastianStork 2024-07-20 11:52:16 +02:00
parent 258cc2d7f2
commit cda9b2d2fb
8 changed files with 11 additions and 16 deletions

View file

@ -1,6 +1,6 @@
{
self,
inputs,
self,
lib,
...
}:
@ -13,7 +13,7 @@ in
name:
inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
inherit self inputs;
inherit inputs self;
};
modules = [
"${self}/hosts/${name}"