mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
9dad146639
Add new options Darwin options: - `targets.darwin.defaults` This adds options for configuring macOS through the `defaults(1)` system. This option can be used to manipulate a vast majority of user settings for macOS and its applications. This is implemented using freeform modules and includes additional descriptions and type information for some useful options. - `targets.darwin.keybindings` This adds options for configuring the default keybindings for macOS text fields. - `targets.darwin.search` This adds options for configuring the default search engine for macOS.
33 lines
830 B
Nix
33 lines
830 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.targets.darwin;
|
|
searchEngines = {
|
|
Bing = "com.bing.www";
|
|
DuckDuckGo = "com.duckduckgo";
|
|
Ecosia = "org.ecosia.www";
|
|
Google = "com.google.www";
|
|
Yahoo = "com.yahoo.www";
|
|
};
|
|
searchId = getAttr cfg.search searchEngines;
|
|
in {
|
|
options.targets.darwin.search = mkOption {
|
|
type = with types; nullOr (enum (attrNames searchEngines));
|
|
default = null;
|
|
description = "Default search engine.";
|
|
};
|
|
|
|
config = mkIf (cfg.search != null) {
|
|
targets.darwin.defaults = {
|
|
NSGlobalDomain.NSPreferredWebServices = {
|
|
NSWebServicesProviderWebSearch = {
|
|
NSDefaultDisplayName = cfg.search;
|
|
NSProviderIdentifier = searchId;
|
|
};
|
|
};
|
|
"com.apple.Safari".SearchProviderIdentifier = searchId;
|
|
};
|
|
};
|
|
}
|