dotfiles.nix/home/darwin/launchd.nix
2024-01-30 14:00:27 -08:00

12 lines
160 B
Nix

{
lib,
config,
pkgs,
...
}: let
logFile = name: "${config.home.homeDirectory}/Library/Logs/${name}.log";
in {
launchd = {
enable = true;
};
}