mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Replace Karabiner-specific /run/wrappers/bin implementation
This commit is contained in:
parent
ef8b45c7c0
commit
30ec028267
1 changed files with 5 additions and 10 deletions
|
@ -86,16 +86,11 @@ in
|
|||
serviceConfig.RunAtLoad = true;
|
||||
};
|
||||
|
||||
# We need this to run every reboot as /run gets nuked so we can't put this
|
||||
# inside the preActivation script as it only gets run on darwin-rebuild switch.
|
||||
launchd.daemons.setsuid_karabiner_session_monitor = {
|
||||
script = ''
|
||||
rm -rf /run/wrappers
|
||||
mkdir -p /run/wrappers/bin
|
||||
install -m4555 "${cfg.package}/Library/Application Support/org.pqrs/Karabiner-Elements/bin/karabiner_session_monitor" /run/wrappers/bin
|
||||
'';
|
||||
serviceConfig.RunAtLoad = true;
|
||||
serviceConfig.KeepAlive.SuccessfulExit = false;
|
||||
security.wrappers.karabiner_session_monitor = {
|
||||
setuid = true;
|
||||
owner = "root";
|
||||
group = "wheel";
|
||||
source = "${pkgs.karabiner-elements}/Library/Application Support/org.pqrs/Karabiner-Elements/bin/karabiner_session_monitor";
|
||||
};
|
||||
|
||||
launchd.user.agents.karabiner_session_monitor = {
|
||||
|
|
Loading…
Add table
Reference in a new issue