Install agent CLIs on NixOracle

This commit is contained in:
ltadeu6 2026-06-21 17:03:21 -03:00
parent 701de54a74
commit 40c9a4b2a0
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D
2 changed files with 18 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }:
{ pkgs, config, lib, ... }:
let
username = "ltadeu6";
sshAuthorizedKeys = [
@ -36,7 +36,13 @@ in {
./hardware-configuration.nix
];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"claude-code"
];
environment.systemPackages = with pkgs; [
claude-code
curl
fd
git
@ -47,6 +53,7 @@ in {
ripgrep
starship
tmux
unstable.codex
wget
];