[macbook] Karabiner and hotkeys.

Signed-off-by: Mariano Uvalle <u.g.a.mariano@gmail.com>
This commit is contained in:
Mariano Uvalle
2025-08-06 18:37:19 -07:00
parent d4d41aa6b3
commit 2f2f25eec9
2 changed files with 114 additions and 1 deletions
+13 -1
View File
@@ -1,4 +1,14 @@
{ self, pkgs, ... }: {
imports = [
./hotkeys.nix
];
# To reflect hotkeys without a login cycle.
system.activationScripts.postActivation.text = ''
sudo -u uagm /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; [
@@ -28,8 +38,10 @@
"kicad"
"secretive"
"gcc-arm-embedded"
"librewolf"
"karabiner-elements"
"raycast"
"logi-options+"
"insta360-link-controller"
];
};