13 lines
291 B
Nix
13 lines
291 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
|
|
unstable.code-cursor
|
|
unstable.vscode
|
|
];
|
|
}
|