fix applications in spotlight
This commit is contained in:
@@ -87,6 +87,7 @@
|
|||||||
./home-modules
|
./home-modules
|
||||||
./users/user/home.nix
|
./users/user/home.nix
|
||||||
];
|
];
|
||||||
|
lumpiastyHome.macos = true;
|
||||||
};
|
};
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
inputs.claude-code.overlays.default
|
inputs.claude-code.overlays.default
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
./gaming.nix
|
./gaming.nix
|
||||||
./fhsBash.nix
|
./fhsBash.nix
|
||||||
./linux.nix
|
./linux.nix
|
||||||
|
./macos.nix
|
||||||
] ++ lib.optionals (osConfig.lumpiasty.enablePlasma) [
|
] ++ lib.optionals (osConfig.lumpiasty.enablePlasma) [
|
||||||
./plasma.nix
|
./plasma.nix
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user