33 lines
606 B
Nix
33 lines
606 B
Nix
{ ... }: {
|
|
|
|
/*flake.templates = {
|
|
nixos = {
|
|
welcomeText = ''
|
|
#Welcome to Olympus!
|
|
Have Fun!
|
|
'';
|
|
|
|
description = ''
|
|
Generate this where you want your config.
|
|
'';
|
|
|
|
path = ./nixos;
|
|
|
|
};
|
|
|
|
home-manager = {
|
|
welcomeText = ''
|
|
#Welcome to Olympus!
|
|
Have Fun!
|
|
'';
|
|
|
|
description = ''
|
|
Generate this where you want your config.
|
|
'';
|
|
|
|
path = ./home-manager;
|
|
|
|
};
|
|
};*/
|
|
}
|