Skip to content

Commit 83cf9f5

Browse files
committed
CC 2.1.74
1 parent ef388bb commit 83cf9f5

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

hosts/common.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ in {
110110
device = "${nas.ip}:${nas.shares.books}";
111111
fsType = "nfs";
112112
};
113+
"/mnt/creative" = {
114+
device = "${nas.ip}:${nas.shares.creative}";
115+
fsType = "nfs";
116+
};
113117
};
114118

115119
services.eternal-terminal = {

lib/network.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
music = "/volume1/music";
3636
books = "/volume1/books";
3737
backup = "/volume1/backup";
38+
creative = "/volume1/creative";
3839
};
3940
};
4041
sonos-move = {

pkgs/claude-code-cli/default.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66
glibc,
77
}:
88
let
9-
version = "2.1.71";
9+
version = "2.1.74";
1010
gcsBase = "https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/${version}";
1111

1212
sources = {
1313
"aarch64-darwin" = fetchurl {
1414
url = "${gcsBase}/darwin-arm64/claude";
15-
hash = "sha256-89gSnsfdrxWMEOGT31RkIUmdabf0TsLwtnw/5U9gHLk=";
15+
hash = "sha256-SKB+KIfNSHkhnTGeSKxcxuIJgjjHwKvgHFejVDCUHLc=";
1616
};
1717
"x86_64-darwin" = fetchurl {
1818
url = "${gcsBase}/darwin-x64/claude";
19-
hash = "sha256-qP8hACKGCxVn01+6WCLZvkp0xCKWLi4yw59BFnltV8g=";
19+
hash = "sha256-Mfp+vUJHGUBssSP5V4HF55X3qYmWEf8akhMJJFjTRus=";
2020
};
2121
"x86_64-linux" = fetchurl {
2222
url = "${gcsBase}/linux-x64/claude";
23-
hash = "sha256-YQAuX1xBkOmndb2c+Q5X//PwN5+yyO3GU6wJQqNHur0=";
23+
hash = "sha256-5WE2EN7uds0yvJuOnjZNoHT82IBwX4N6TJ7h7Dj5tzs=";
2424
};
2525
"aarch64-linux" = fetchurl {
2626
url = "${gcsBase}/linux-arm64/claude";
27-
hash = "sha256-ribkpWVCOPCmhNX9mmv1kjIbBuuI6oNDQ7J18xDjm+o=";
27+
hash = "sha256-v6iDiXomQzxRMqZBsy0fzgDh7/BKYb9SzZq4WurC6pU=";
2828
};
2929
};
3030
in

0 commit comments

Comments
 (0)