mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-14 12:17:21 +00:00
12 lines
160 B
Nix
12 lines
160 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
logFile = name: "${config.home.homeDirectory}/Library/Logs/${name}.log";
|
|
in {
|
|
launchd = {
|
|
enable = true;
|
|
};
|
|
}
|