Skip to content

Commit

Permalink
darwin: set defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
rennsax committed Oct 20, 2024
1 parent c299dfb commit 594c9cd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions machines/mbp-2021/home-501.nix
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,31 @@ in
};
};

targets.darwin.defaults =
{
"org.gpgtools.pinentry-mac".DisableKeychain = true;
}
//
# Turn off Microsoft Office Telemetry.
builtins.listToAttrs (
map
(
app:
lib.nameValuePair "com.microsoft.${app}" {
SendAllTelemetryEnabled = false;
}
)
[
"Word"
"Excel"
"Powerpoint"
"Outlook"
"autoupdate2"
"Office365ServiceV2"
"onenote.mac"
]
);

programs.home-manager.enable = true;

home.stateVersion = "24.05";
Expand Down

0 comments on commit 594c9cd

Please sign in to comment.