summaryrefslogtreecommitdiff
path: root/modules/systems.nix
blob: efc1c287d3860616d4307c754d2de0beeceb8586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{inputs, ...}: {
  options = {
    flake = inputs.flake-parts.lib.mkSubmoduleOptions {
      wrapperModules = inputs.nixpkgs.lib.mkOption {
        default = {};
      };
    };
  };

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