summaryrefslogtreecommitdiff
path: root/templates/full/nix/default.nix
blob: 66bb71150878ea81fcdc73b0a80261e68578ac47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  imports = [
    ./shell.nix
    ./packages.nix
  ];

  perSystem =
    { pkgs, ... }:
    {
      formatter = pkgs.alejandra;
    };
}