1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

launchd: remove with lib

This commit is contained in:
Austin Horstman 2025-03-26 09:05:00 -05:00
parent f1d4acaa10
commit a710f337d6

View file

@ -1,7 +1,5 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib;
let let
inherit (pkgs.stdenv.hostPlatform) isDarwin; inherit (pkgs.stdenv.hostPlatform) isDarwin;
inherit (lib.generators) toPlist; inherit (lib.generators) toPlist;
@ -12,11 +10,11 @@ let
launchdConfig = { config, name, ... }: { launchdConfig = { config, name, ... }: {
options = { options = {
enable = mkEnableOption name; enable = lib.mkEnableOption name;
config = mkOption { config = lib.mkOption {
type = types.submodule (import ./launchd.nix); type = lib.types.submodule (import ./launchd.nix);
default = { }; default = { };
example = literalExpression '' example = lib.literalExpression ''
{ {
ProgramArguments = [ "/usr/bin/say" "Good afternoon" ]; ProgramArguments = [ "/usr/bin/say" "Good afternoon" ];
StartCalendarInterval = [ StartCalendarInterval = [
@ -33,22 +31,22 @@ let
}; };
}; };
config = { config.Label = mkDefault "${labelPrefix}${name}"; }; config = { config.Label = lib.mkDefault "${labelPrefix}${name}"; };
}; };
toAgent = config: pkgs.writeText "${config.Label}.plist" (toPlist { } config); toAgent = config: pkgs.writeText "${config.Label}.plist" (toPlist { } config);
agentPlists = agentPlists = lib.mapAttrs'
mapAttrs' (n: v: nameValuePair "${v.config.Label}.plist" (toAgent v.config)) (n: v: lib.nameValuePair "${v.config.Label}.plist" (toAgent v.config))
(filterAttrs (n: v: v.enable) cfg.agents); (lib.filterAttrs (n: v: v.enable) cfg.agents);
agentsDrv = pkgs.runCommand "home-manager-agents" { } '' agentsDrv = pkgs.runCommand "home-manager-agents" { } ''
mkdir -p "$out" mkdir -p "$out"
declare -A plists declare -A plists
plists=(${ plists=(${
concatStringsSep " " lib.concatStringsSep " "
(mapAttrsToList (name: value: "['${name}']='${value}'") agentPlists) (lib.mapAttrsToList (name: value: "['${name}']='${value}'") agentPlists)
}) })
for dest in "''${!plists[@]}"; do for dest in "''${!plists[@]}"; do
@ -57,36 +55,37 @@ let
done done
''; '';
in { in {
meta.maintainers = with maintainers; [ midchildan ]; meta.maintainers = with lib.maintainers; [ midchildan ];
options.launchd = { options.launchd = {
enable = mkOption { enable = lib.mkOption {
type = types.bool; type = lib.types.bool;
default = isDarwin; default = isDarwin;
defaultText = literalExpression "pkgs.stdenv.hostPlatform.isDarwin"; defaultText = lib.literalExpression "pkgs.stdenv.hostPlatform.isDarwin";
description = '' description = ''
Whether to enable Home Manager to define per-user daemons by making use Whether to enable Home Manager to define per-user daemons by making use
of launchd's LaunchAgents. of launchd's LaunchAgents.
''; '';
}; };
agents = mkOption { agents = lib.mkOption {
type = with types; attrsOf (submodule launchdConfig); type = with lib.types; attrsOf (submodule launchdConfig);
default = { }; default = { };
description = "Define LaunchAgents."; description = "Define LaunchAgents.";
}; };
}; };
config = mkMerge [ config = lib.mkMerge [
{ {
assertions = [{ assertions = [{
assertion = (cfg.enable && agentPlists != { }) -> isDarwin; assertion = (cfg.enable && agentPlists != { }) -> isDarwin;
message = let names = lib.concatStringsSep ", " (attrNames agentPlists); message =
in "Must use Darwin for modules that require Launchd: " + names; let names = lib.concatStringsSep ", " (lib.attrNames agentPlists);
in "Must use Darwin for modules that require Launchd: " + names;
}]; }];
} }
(mkIf isDarwin { (lib.mkIf isDarwin {
home.extraBuilderCommands = '' home.extraBuilderCommands = ''
ln -s "${agentsDrv}" $out/LaunchAgents ln -s "${agentsDrv}" $out/LaunchAgents
''; '';
@ -132,7 +131,7 @@ in {
# NOTE: Launch Agent configurations can't be symlinked from the Nix store # NOTE: Launch Agent configurations can't be symlinked from the Nix store
# because it needs to be owned by the user running it. # because it needs to be owned by the user running it.
home.activation.setupLaunchAgents = home.activation.setupLaunchAgents =
hm.dag.entryAfter [ "writeBoundary" ] '' lib.hm.dag.entryAfter [ "writeBoundary" ] ''
setupLaunchAgents() { setupLaunchAgents() {
local oldDir newDir dstDir domain err local oldDir newDir dstDir domain err
oldDir="" oldDir=""
@ -144,7 +143,7 @@ in {
fi fi
fi fi
newDir="$(readlink -m "$newGenPath/LaunchAgents")" newDir="$(readlink -m "$newGenPath/LaunchAgents")"
dstDir=${escapeShellArg dstDir} dstDir=${lib.escapeShellArg dstDir}
domain="gui/$UID" domain="gui/$UID"
err=0 err=0