summaryrefslogtreecommitdiff
path: root/parts/default.nix
blob: ac7bc089685566fce100deb8c0d6b28ae8edb951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  imports = [
    ./lib
    ./modules
    ./overlays
    ./systems
    ./users
    ./dev.nix
  ];

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