feat: add codex-cli to laptop config
This commit is contained in:
parent
d0381a9dca
commit
e746067945
5 changed files with 118 additions and 31 deletions
19
home.nix
19
home.nix
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue