
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.
7 lines
153 B
Nix
7 lines
153 B
Nix
{ self, ... }:
|
|
{
|
|
flake.nixosConfigurations.build01 = self.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./configuration.nix ];
|
|
};
|
|
}
|