12 lines
155 B
Nix
12 lines
155 B
Nix
{ pkgs, ... }@all: with all; {
|
|
home = {
|
|
packages = with pkgs; [
|
|
cargo
|
|
clippy
|
|
rustc
|
|
rustfmt
|
|
rust-analyzer
|
|
];
|
|
};
|
|
}
|