summaryrefslogtreecommitdiff
path: root/systems/darwin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/darwin.nix')
-rw-r--r--systems/darwin.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/systems/darwin.nix b/systems/darwin.nix
index f36d152..a1b91f3 100644
--- a/systems/darwin.nix
+++ b/systems/darwin.nix
@@ -1,11 +1,12 @@
-{self, ...}: {
+{ self, ... }:
+{
flake = {
- darwinConfigurations = let
- inherit (self.lib) darwinSystem;
- in {
- caroline = darwinSystem {
- modules = [./caroline];
+ darwinConfigurations =
+ let
+ inherit (self.lib) darwinSystem;
+ in
+ {
+ caroline = darwinSystem { modules = [ ./caroline ]; };
};
- };
};
}