Skip to content

Commit

Permalink
Only install lm-studio on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesplain committed Feb 4, 2025
1 parent e0dae1f commit 9c4ceb8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nixos-config/platforms/darwin/homebrew/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
user,
hostName,
osVersion,
platform,
...
}: let
inherit
Expand Down Expand Up @@ -36,13 +37,20 @@ in {
]
else []
)
++
(
if platform.isArm
then [
"lm-studio"
]
else []
)
++ [
"session-manager-plugin"
"appcleaner"
"1password-cli"
"ghostty"
"shottr"
"lm-studio"
"virtualbox"
];

Expand Down

0 comments on commit 9c4ceb8

Please sign in to comment.