about summary refs log tree commit diff
path: root/home/profiles/darwin/default.nix
blob: 989beb16d24246211eef468df513ff703008bc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
    ];

  };
}