fix applications in spotlight

This commit is contained in:
2026-09-03 22:14:17 +02:00
parent cddf1860d2
commit f9d95837f5
3 changed files with 12 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, osConfig, ... }:
{
options.lumpiastyHome.macos = lib.mkEnableOption "Macos specific things";
config = lib.mkIf config.lumpiastyHome.macos {
targets.darwin.copyApps.enable = true;
targets.darwin.linkApps.enable = false;
};
}