8 lines
164 B
Nix
8 lines
164 B
Nix
outerInputs @ { self, inputs, system, pkgs, ... }: {
|
|
nix.registry.system.flake = self;
|
|
|
|
system.extraDependencies = [
|
|
(import ./rust.nix outerInputs)
|
|
];
|
|
}
|