feat: Added bounds to check for linux / mac

This commit is contained in:
uttarayan21
2025-05-13 17:01:52 +05:30
parent a8342f1766
commit 3cad62f6e0
3 changed files with 10 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
{
pkgs,
device,
lib,
...
}: {
home.packages = [
home.packages = lib.optionals pkgs.stdenv.isLinux [
pkgs.hyprpicker
];
}