aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nix/templates/flake.nix
blob: dc4cf2d2f260cc1a616439fb5b2329c0e6390ef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  description = "Personal flake templates. Use: nix flake init -t ~/.config/nix/templates#<name>";

  outputs = { self }: {
    templates = {
      dev = {
        path = ./dev;
        description = "Generic per-project dev shell with direnv .envrc";
      };
      default = self.templates.dev;
    };
  };
}