chore(nix): add flake with claude-code in devShell

This commit is contained in:
2026-01-25 21:28:16 +01:00
parent c3655da9ff
commit a62ffe36be
2 changed files with 63 additions and 1 deletions

View File

@@ -9,13 +9,14 @@
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
pkgs = import nixpkgs { inherit system; config.allowUnfree = true; };
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_20
nodePackages.npm
gnumake
claude-code
];
shellHook = ''