12 lines
211 B
Nix
12 lines
211 B
Nix
{ inputs, ... }: {
|
|
flake.modules.nixos.keith-devtools = {
|
|
imports =
|
|
with inputs.self.modules.nixos;
|
|
with inputs.self.factory;
|
|
[
|
|
development-tools
|
|
rust-dev
|
|
];
|
|
};
|
|
}
|