Add Zellij everywhere, but don't automatically use

This commit is contained in:
Gene Liverman 2025-08-19 08:47:54 -04:00
parent f38cd3f10b
commit eac4008326
Signed by: genebean
SSH key fingerprint: SHA256:ZjLMZwtU49BWDoI2hgsA0/Q6XT4+S0kcKFWW1EJBicI
3 changed files with 27 additions and 25 deletions

View file

@ -256,6 +256,10 @@ in {
let g:airline_powerline_fonts = 1 let g:airline_powerline_fonts = 1
''; '';
}; };
zellij = {
enable = true;
enableZshIntegration = false;
};
zsh = { zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;

View file

@ -1,27 +1,29 @@
{ username, ... }: { { username, ... }: {
# dawrwin-specific shell config # dawrwin-specific shell config
programs.zsh = { programs = {
initContent = '' zsh = {
function otpon() { initContent = ''
osascript -e 'tell application "yubiswitch" to KeyOn' function otpon() {
} osascript -e 'tell application "yubiswitch" to KeyOn'
function otpoff() { }
osascript -e 'tell application "yubiswitch" to KeyOff' function otpoff() {
} osascript -e 'tell application "yubiswitch" to KeyOff'
}
# Include Puppet's normal bin folder since it is installed via Homebrew # Include Puppet's normal bin folder since it is installed via Homebrew
export PATH=$PATH:/opt/puppetlabs/bin export PATH=$PATH:/opt/puppetlabs/bin
export PATH=$PATH:/opt/puppetlabs/pdk/bin export PATH=$PATH:/opt/puppetlabs/pdk/bin
export PATH=$PATH:/opt/puppetlabs/puppet/bin export PATH=$PATH:/opt/puppetlabs/puppet/bin
''; '';
oh-my-zsh.plugins = [ "macos" ]; oh-my-zsh.plugins = [ "macos" ];
shellAliases = { shellAliases = {
currentwifi = "networksetup -getairportnetwork en0 |cut -d ':' -f2- | cut -d ' ' -f2-"; currentwifi = "networksetup -getairportnetwork en0 |cut -d ':' -f2- | cut -d ' ' -f2-";
nixdiff = "brew outdated && brew outdated --cask && mas outdated && cd ~/repos/dots && sudo darwin-rebuild build --flake . && nvd diff /run/current-system result"; nixdiff = "brew outdated && brew outdated --cask && mas outdated && cd ~/repos/dots && sudo darwin-rebuild build --flake . && nvd diff /run/current-system result";
nixup = "sudo darwin-rebuild switch --flake ~/repos/dots"; nixup = "sudo darwin-rebuild switch --flake ~/repos/dots";
uwgconnect = "networksetup -setairportnetwork en0 SecureWest"; uwgconnect = "networksetup -setairportnetwork en0 SecureWest";
uwgforget = "networksetup -removepreferredwirelessnetwork en0 SecureWest"; uwgforget = "networksetup -removepreferredwirelessnetwork en0 SecureWest";
ykey = "pkill -9 gpg-agent && source ~/.zshrc; ssh-add -L"; ykey = "pkill -9 gpg-agent && source ~/.zshrc; ssh-add -L";
};
}; };
}; };

View file

@ -7,10 +7,6 @@
goPath = "go"; goPath = "go";
}; };
k9s.enable = true; k9s.enable = true;
zellij = {
enable = true;
enableZshIntegration = true;
};
}; };
sops = { sops = {