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