nix-templates/flake.nix

17 lines
426 B
Nix
Raw Normal View History

2022-05-20 12:32:45 +01:00
{
description = "Samw's Nix flake templates";
inputs = { utils.url = "github:numtide/flake-utils"; };
outputs = { self, utils, nixpkgs }:
{
templates = {
rust = {
path = ./rust;
description = "My preferred rust setup.";
};
};
} // utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in { formatter = pkgs.nixfmt; });
}