We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30842a2 commit 5c30125Copy full SHA for 5c30125
flake.nix
@@ -57,6 +57,22 @@
57
inherit inputs overlays;
58
packages.${system} = import ./my/pkgs/default.nix {inherit inputs pkgs;};
59
nixosModules = import ./my/nixosModules;
60
+
61
+ templates = {
62
+ default = {
63
+ path = ./templates/default;
64
+ description = "Simple flake with a devshell";
65
+ };
66
+ prisma = {
67
+ path = ./templates/prisma;
68
+ description = "Prisma project template with nix-prisma-utils";
69
70
+ rust-overlay = {
71
+ path = ./templates/rust-overlay;
72
+ description = "Rust project";
73
74
75
76
devShells.${system}.default = pkgs.mkShell {
77
name = "dotfiles";
78
packages = with pkgs; [
0 commit comments