summaryrefslogtreecommitdiff
path: root/systems/darwin.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-24 04:53:52 -0400
committerseth <[email protected]>2024-05-24 21:36:05 -0600
commitf4bf843db8765fda3a4629d9846c2edc458712eb (patch)
treed776909aee242283915f4d332e67536b5994064b /systems/darwin.nix
parent6ceaeeb714b97984190981110120973d90d57ab4 (diff)
flatten imports
Diffstat (limited to 'systems/darwin.nix')
-rw-r--r--systems/darwin.nix11
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];
+ };
+ };
+ };
+}