nix/iterm2/default.nix
2022-12-01 11:38:15 -05:00

14 lines
241 B
Nix

{ config, pkgs, ... }:
let
inherit (pkgs.lib) mkIf;
inherit (pkgs.stdenv) isDarwin;
in
{
xdg.configFile = mkIf isDarwin {
"iterm2/com.googlecode.iterm2.plist" = {
source = ./config/com.googlecode.iterm2.plist;
};
};
}