mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
16 lines
378 B
Nix
16 lines
378 B
Nix
{ config, ... }: {
|
|
|
|
# Hammerspoon - MacOS custom automation scripting
|
|
|
|
home-manager.users.${config.user} = {
|
|
xdg.configFile.hammerspoon = { source = ./hammerspoon; };
|
|
};
|
|
|
|
homebrew.casks = [ "hammerspoon" ];
|
|
|
|
system.activationScripts.postUserActivation.text = ''
|
|
defaults write org.hammerspoon.Hammerspoon MJConfigFile "~/.config/hammerspoon/init.lua"
|
|
'';
|
|
|
|
}
|