Add claude code to mac
This commit is contained in:
parent
b9b62ea3c3
commit
fa9c2115e9
16
flake.nix
16
flake.nix
@ -106,7 +106,21 @@
|
|||||||
(
|
(
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [ overlay ];
|
nixpkgs.overlays = [
|
||||||
|
overlay
|
||||||
|
(
|
||||||
|
self: super:
|
||||||
|
let
|
||||||
|
nixpkgsWithFree = import nixpkgs {
|
||||||
|
system = "aarch64-darwin";
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
claude-code = nixpkgsWithFree.claude-code;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
];
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
mac-app-util.darwinModules.default
|
mac-app-util.darwinModules.default
|
||||||
|
|||||||
@ -32,6 +32,7 @@ in
|
|||||||
home.stateVersion = "24.11";
|
home.stateVersion = "24.11";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
claude-code
|
||||||
colima
|
colima
|
||||||
docker
|
docker
|
||||||
hammerspoon
|
hammerspoon
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user