{ inputs, ... }: let inherit (inputs) self; inherit (self) lib; createHost = hostDir: lib.nixosSystem { system = null; specialArgs = { inherit lib inputs self; }; modules = [ hostDir ../modules ]; }; in { niks = createHost ./niks; del = createHost ./del; hape = createHost ./hape; chmura = createHost ./chmura; ${inputs.work-secrets.hostname} = createHost ./work; }