dotfiles.nix/templates/default.nix

14 lines
302 B
Nix
Raw Normal View History

2023-10-26 02:37:42 +00:00
{
flake.templates = {
rust = {
path = ./rust;
description = "A rust flake template based on flake.parts and crane";
welcomeText = ''
welcome to a new rust project ()
2022-12-21 05:22:57 +00:00
2023-10-26 02:37:42 +00:00
run `direnv allow` and `cargo init` to start a new project
'';
};
2022-12-21 05:22:57 +00:00
};
}