infra/build02/default.nix
zimbatm 9db2dcf124 flake: split up per host
Inject the inputs in specialArgs so they can be used in the modules
directly. This allows us to split up the top-level flake as well.
2023-05-15 18:43:50 +00:00

8 lines
154 B
Nix

{ self, ... }:
{
flake.nixosConfigurations.build02 = self.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
}