aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: d17aca5c74846b3e3059b8a431ebe83144481121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  description = "TeX devShell for flake-parts";

  inputs = {
    flake-parts.url = "github:hercules-ci/flake-parts";
    systems.url = "github:nix-systems/default";
  };

  outputs = inputs @ { self, flake-parts, ... }: flake-parts.lib.mkFlake { inherit self inputs; } {
    systems = import inputs.systems;

    flake.flakeModules.default = ./module.nix;

    flake.templates.default = {
      path = ./template;
      description = "TeX-utils default template";
    };
  };
}