Files
nixos/hosts/nb/modules/coding.nix
2025-04-25 20:35:33 +02:00

11 lines
246 B
Nix

{ config, pkgs, ... }:
let
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
config = { allowUnfree = true; };
};
in {
environment.systemPackages = with pkgs; [
unstable.claude-code
];
}