flake: fix templates

This commit is contained in:
Gabriel Arazas 2024-01-20 17:17:01 +08:00
parent 7bb0b0dd1f
commit cdfbab6490
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -3,19 +3,19 @@
flake.templates = {
default = inputs.self.templates.basic-devshell;
basic-devshell = {
path = ../templates/basic-devshell;
path = ../../templates/basic-devshell;
description = "Basic development shell template";
};
basic-overlay-flake = {
path = ../templates/basic-overlay-flake;
path = ../../templates/basic-overlay-flake;
description = "Basic overlay as a flake";
};
sample-nixos-template = {
path = ../templates/sample-nixos-template;
path = ../../templates/sample-nixos-template;
description = "Simple sample Nix flake with NixOS and home-manager";
};
local-ruby-nix = {
path = ../templates/local-ruby-nix;
path = ../../templates/local-ruby-nix;
description = "Local Ruby app development with ruby-nix";
};
};