aboutsummaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-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
+ ];
+
+ };
+}