summaryrefslogtreecommitdiff
path: root/systems/darwin.nix
blob: a1b91f349ed97b56849b1739d4844d94a160f20a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ self, ... }:
{
  flake = {
    darwinConfigurations =
      let
        inherit (self.lib) darwinSystem;
      in
      {
        caroline = darwinSystem { modules = [ ./caroline ]; };
      };
  };
}