mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
11 lines
187 B
Nix
11 lines
187 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
|
|
|
{
|
|
imports = [ ./launchd.nix ./apps.nix ];
|
|
|
|
targets.darwin = {
|
|
defaults = {
|
|
"com.googlecode.iterm2" = import ./iterm2.nix;
|
|
};
|
|
};
|
|
}
|