diff options
Diffstat (limited to 'systems/darwin.nix')
| -rw-r--r-- | systems/darwin.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/systems/darwin.nix b/systems/darwin.nix new file mode 100644 index 0000000..f36d152 --- /dev/null +++ b/systems/darwin.nix @@ -0,0 +1,11 @@ +{self, ...}: { + flake = { + darwinConfigurations = let + inherit (self.lib) darwinSystem; + in { + caroline = darwinSystem { + modules = [./caroline]; + }; + }; + }; +} |
