Playing with templates?

This commit is contained in:
Daniel Flanagan 2023-12-19 10:24:07 -06:00
parent 666182e699
commit deaad9e095
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
2 changed files with 8 additions and 0 deletions

View file

@ -170,6 +170,8 @@
diskoConfigurations = import ./disko; diskoConfigurations = import ./disko;
}; };
templates = import ./templates/all.nix;
nixConfig = { nixConfig = {
extra-experimental-features = ["nix-command" "flakes"]; extra-experimental-features = ["nix-command" "flakes"];

6
templates/all.nix Normal file
View file

@ -0,0 +1,6 @@
{
rust = {
path = ./rust;
description = "A template for working on a Rust project";
};
}