summary refs log tree commit diff
path: root/flake.nix
blob: 87e88e403c2f0180bd5b86a760cbff1daaefcdd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  description = "Irenes' nix flake templates";

  outputs = { self }: {
    templates = {
      base = {
        path = ./base;
        description = "Uses direnv and not much else.";
      };
    };

    defaultTemplate = self.templates.base;
  };
}