Skip to content

Commit dbccd18

Browse files
author
Conner Ohnesorge
committed
fixes to nix merges
1 parent 94b45a4 commit dbccd18

4 files changed

Lines changed: 6 additions & 30 deletions

File tree

.zshrc

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff 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"
55
source "${ZINIT_HOME}/zinit.zsh"
66
export 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=""
127
export CLAUDE_CODE_ENABLE_TELEMETRY="0"
138
export BUN_INSTALL="$HOME/.bun"
149
export PATH="$HOME/.cargo/bin:$PATH"
15-
export CLAUDE_CODE_ENABLE_TELEMETRY="0"
10+
export PATH="$HOME/.local/bin:$PATH"
11+
1612

1713
path=(
1814
$HOME/.cargo/bin
@@ -49,6 +45,7 @@ if command -v zoxide &>/dev/null && [[ "$CLAUDECODE" != "1" ]]; then
4945
fi
5046
fi
5147
eval "$(starship init zsh)"
48+
eval "$(direnv hook zsh)"
5249
source <(carapace chmod zsh)
5350

5451
autoload -Uz edit-command-line
@@ -73,7 +70,7 @@ cf() {
7370
}
7471
alias g='git'
7572
alias git-reset='git checkout main && git pull'
76-
alias gr='git reset'
73+
alias gr='git-reset'
7774
alias gs='git status'
7875
alias gd='git diff'
7976
alias gsh='git stash'

flake.nix

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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";
@@ -15,13 +14,6 @@
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

modules/config/constants.nix

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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");

modules/config/user.nix

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,14 @@ in
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

0 commit comments

Comments
 (0)