nix/iterm2/default.nix

14 lines
241 B
Nix
Raw Normal View History

2022-11-30 19:12:27 +00:00
{ config, pkgs, ... }:
2022-12-01 16:38:15 +00:00
let
inherit (pkgs.lib) mkIf;
inherit (pkgs.stdenv) isDarwin;
in
2022-11-30 19:12:27 +00:00
{
2022-12-01 16:38:15 +00:00
xdg.configFile = mkIf isDarwin {
"iterm2/com.googlecode.iterm2.plist" = {
source = ./config/com.googlecode.iterm2.plist;
};
2022-11-30 19:12:27 +00:00
};
}