about summary refs log tree commit diff
path: root/darwin/delta
diff options
context:
space:
mode:
Diffstat (limited to 'darwin/delta')
-rw-r--r--darwin/delta/configuration.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/darwin/delta/configuration.nix b/darwin/delta/configuration.nix
new file mode 100644
index 0000000..5ce8eb0
--- /dev/null
+++ b/darwin/delta/configuration.nix
@@ -0,0 +1,18 @@
+{ pkgs, ... }:
+
+{
+  homebrew = {
+    enable = true;
+    brews = [
+      # Thunderbird requires GPGME in 'standard locations'
+      "gpgme"
+    ];
+  };
+
+  # Necessary for using flakes on this system.
+  nix.settings.experimental-features = "nix-command flakes";
+
+  # $ darwin-rebuild changelog
+  system.stateVersion = 5;
+  nixpkgs.hostPlatform = "aarch64-darwin";
+}