about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2025-01-19 09:07:27 +1000
committersefidel <contact@sefidel.net>2025-01-19 09:07:27 +1000
commitee777b34dc317e54e6bfddeec58f5d65a7e8ab44 (patch)
tree8ccbd2038849717be6db4c983eb58ad9a8f910bf
parenta43ce2bc409db330fb19ccc6180662a286bafd1a (diff)
downloadnixrc-ee777b34dc317e54e6bfddeec58f5d65a7e8ab44.tar.gz
nixrc-ee777b34dc317e54e6bfddeec58f5d65a7e8ab44.zip
feat(home/darwin): init
-rw-r--r--home/profiles/darwin/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/home/profiles/darwin/default.nix b/home/profiles/darwin/default.nix
new file mode 100644
index 0000000..989beb1
--- /dev/null
+++ b/home/profiles/darwin/default.nix
@@ -0,0 +1,17 @@
+{ config, lib, pkgs, ... }:
+let cfg = config.profiles.darwin;
+in
+{
+  options.profiles.darwin = {
+    enable = lib.mkEnableOption
+      "Profile for darwin-related packages";
+  };
+
+  config = lib.mkIf cfg.enable {
+    home.packages = [
+      pkgs.iterm2
+      # pkgs.karabiner-elements # Package 'damaged', even with trampoline
+    ];
+
+  };
+}