[msft-mac] Add hotkeys.

Signed-off-by: Mariano Uvalle <juvallegarza@microsoft.com>
This commit is contained in:
Mariano Uvalle
2025-08-05 13:23:27 -07:00
parent da90c0f804
commit 031682d15b
2 changed files with 110 additions and 2 deletions
+11 -2
View File
@@ -1,4 +1,13 @@
{ self, pkgs, ... }: {
imports = [ ./hotkeys.nix ];
# To reflect hotkeys without a login cycle.
system.activationScripts.postActivation.text = ''
# Following line should allow us to avoid a logout/login cycle when changing settings
sudo -u jmug /System/Library/PrivateFrameworks/SystemAdministration.framework/Resources/activateSettings -u
'';
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = with pkgs; [
@@ -20,13 +29,13 @@
};
taps = [];
brews = [
];
brews = [];
casks = [
"ghostty"
"secretive"
"karabiner-elements"
"raycast"
"logi-options+"
];
};