File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,15 +4,11 @@ ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
44[ ! -d $ZINIT_HOME /.git ] && git clone https://github.com/zdharma-continuum/zinit.git " $ZINIT_HOME "
55source " ${ZINIT_HOME} /zinit.zsh"
66export ANTHROPIC_LOG=error
7- export CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS=" 1"
8- export CLAUDE_CODE_FILE_READ_MAX_OUTPUT_TOKENS=450000 # 450k
9- export CLAUDE_CODE_DISABLE_TERMINAL_TITLE=" 1"
10- export USE_API_CONTEXT_MANAGEMENT=" 0"
11- export ANTHROPIC_BETAS=" "
127export CLAUDE_CODE_ENABLE_TELEMETRY=" 0"
138export BUN_INSTALL=" $HOME /.bun"
149export PATH=" $HOME /.cargo/bin:$PATH "
15- export CLAUDE_CODE_ENABLE_TELEMETRY=" 0"
10+ export PATH=" $HOME /.local/bin:$PATH "
11+
1612
1713path=(
1814 $HOME /.cargo/bin
@@ -49,6 +45,7 @@ if command -v zoxide &>/dev/null && [[ "$CLAUDECODE" != "1" ]]; then
4945 fi
5046fi
5147eval " $( starship init zsh) "
48+ eval " $( direnv hook zsh) "
5249source <( carapace chmod zsh)
5350
5451autoload -Uz edit-command-line
7370}
7471alias g=' git'
7572alias git-reset=' git checkout main && git pull'
76- alias gr=' git reset'
73+ alias gr=' git- reset'
7774alias gs=' git status'
7875alias gd=' git diff'
7976alias gsh=' git stash'
Original file line number Diff line number Diff line change 33
44 inputs = {
55 nixpkgs . url = "github:nixos/nixpkgs/nixos-unstable" ;
6- <<<<<<< HEAD
76 zen-browser = {
87 url = "github:0xc000022070/zen-browser-flake" ;
98 inputs . nixpkgs . follows = "nixpkgs" ;
1514 inputs . nixpkgs . follows = "nixpkgs" ;
1615 } ;
1716
18- =======
19- zen-browser . url = "github:connerohnesorge/zen-browser-flake" ;
20- zen-browser . inputs . nixpkgs . follows = "nixpkgs" ;
21- zen-browser . inputs . home-manager . follows = "home-manager" ;
22- firefox-addons . url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons" ;
23- firefox-addons . inputs . nixpkgs . follows = "nixpkgs" ;
24- >>>>>>> f4c6eea ( add python testing script title )
2517 proton-authenticator . url = "github:connerohnesorge/proton-authenticator-flake?ref=0494e1b70724861b4f8e2fb314b744e0591dfbb5" ;
2618 proton-authenticator . inputs . nixpkgs . follows = "nixpkgs" ;
2719
Original file line number Diff line number Diff line change @@ -16,14 +16,9 @@ delib.module {
1616 name = "constants" ;
1717
1818 options . constants = with delib ; {
19- <<<<<<< HEAD
2019 # Primary username for the system (derived from host configuration)
2120 # This allows different usernames per machine (e.g., "connerohnesorge" locally, "cohnesor" at work)
2221 username = strOption "connerohnesorge" ;
23- =======
24- # Primary username for the system (used for account creation and home directory)
25- username = readOnly ( strOption "cohnesor" ) ;
26- >>>>>>> f4c6eea ( add python testing script title )
2722
2823 # Full display name for the user (used in Git commits and system identification)
2924 userfullname = readOnly ( strOption "Conner Ohnesorge" ) ;
Original file line number Diff line number Diff line change 2828 trusted-users = [
2929 "root"
3030 "@wheel" # All wheel group members
31- <<<<<<< HEAD
32- username
33- =======
34- "cohnesor"
35- >>>>>>> f4c6eea ( add python testing script title )
31+ "connerohnesorge"
3632 ] ;
3733
3834 # Users allowed to use Nix daemon
3935 allowed-users = [
4036 "root"
4137 "@wheel"
42- <<<<<<< HEAD
43- username
44- =======
45- "cohnesor"
46- >>>>>>> f4c6eea ( add python testing script title )
38+ "connerohnesorge"
4739 ] ;
4840
4941 # Binary cache configuration for faster builds
You can’t perform that action at this time.
0 commit comments