summaryrefslogtreecommitdiffstats
path: root/flake-module.nix
blob: d59c4ee1fba65c37eb76fddd12f075716a7689ff (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  lib,
  ...
}:
{
  options.flake.darwinConfigurations = lib.mkOption {
    type = lib.types.lazyAttrsOf lib.types.raw;
    default = { };
    description = "Darwin system configurations";
  };
}