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

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

      rust = {
        path = ./rust;
        description = "A Rust project built using Cargo and crane.";
      };
    };

    defaultTemplate = self.templates.base;
  };
}