feat: move raycast to macos folder

This commit is contained in:
uttarayan21
2025-02-07 22:49:31 +05:30
parent 66e2019d7e
commit 3b792d62fd
4 changed files with 15 additions and 2 deletions

14
home/macos/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{
lib,
device,
...
}: {
imports =
[]
++ (lib.optionals device.hasGui [
./raycast.nix
]);
services.kdeconnect.enable = device.hasGui;
services.kdeconnect.indicator = device.hasGui;
}