summaryrefslogtreecommitdiff
path: root/templates/full/nix/default.nix
blob: 2033702ef02658fed6ac2a4dab3981681100442e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
_: {
  imports = [
    ./dev.nix
    ./pkgs
  ];

  systems = [
    "x86_64-linux"
    "aarch64-linux"
    "x86_64-darwin"
    "aarch64-darwin"
  ];

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