dotfiles.nix/templates/default.nix

14 lines
302 B
Nix

{
flake.templates = {
rust = {
path = ./rust;
description = "A rust flake template based on flake.parts and crane";
welcomeText = ''
welcome to a new rust project ()
run `direnv allow` and `cargo init` to start a new project
'';
};
};
}