10 lines
186 B
Nix
10 lines
186 B
Nix
|
{config, ...}: {
|
||
|
home.file."${config.xdg.configHome}/cargo/config.toml" = {
|
||
|
enable = true;
|
||
|
text = ''
|
||
|
[build]
|
||
|
rustdocflags = ["--default-theme=ayu"];
|
||
|
'';
|
||
|
};
|
||
|
}
|