feat: add codex-cli to laptop config

This commit is contained in:
Jet 2026-03-18 21:52:42 -07:00
parent d0381a9dca
commit e746067945
No known key found for this signature in database
5 changed files with 118 additions and 31 deletions

View file

@ -85,6 +85,7 @@ in
bat
ffmpeg-full
claude-code
inputs.codex-cli-nix.packages.${pkgs.stdenv.hostPlatform.system}.default
fd
btop
fastfetch
@ -234,10 +235,17 @@ in
programs.bash = {
enable = true;
enableCompletion = true;
historyControl = [ "ignoredups" "erasedups" ];
historyControl = [
"ignoredups"
"erasedups"
];
historySize = 50000;
historyFileSize = 100000;
shellOptions = [ "histappend" "checkwinsize" "globstar" ];
shellOptions = [
"histappend"
"checkwinsize"
"globstar"
];
shellAliases = {
"dr" = "direnv reload";
"da" = "direnv allow";
@ -316,7 +324,12 @@ in
editor = "hx";
pager = "bat --style=plain";
};
diff.tool = [ "difft" "--color=always" "$left" "$right" ];
diff.tool = [
"difft"
"--color=always"
"$left"
"$right"
];
};
};