Skip to content

Commit 09d3194

Browse files
authored
Merge pull request #151 from kid/claude-desktop-linux-only
fix(claude): install claude-desktop on Linux only
2 parents d522d3e + f376bea commit 09d3194

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

modules/nixfiles/ai/claude.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
homeManager =
44
{ lib, pkgs, ... }:
55
{
6-
home.packages = with pkgs.llm-agents; [ claude-desktop ];
6+
home.packages = lib.optionals pkgs.stdenv.hostPlatform.isLinux (
7+
with pkgs.llm-agents; [ claude-desktop ]
8+
);
79

810
programs.claude-code = {
911
enable = true;

0 commit comments

Comments
 (0)