summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2026-06-21 22:42:17 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2026-06-21 22:42:17 -0400
commit1d64a259eb2f377b7b7dc36263eaf33d4a7cf28c (patch)
tree81f5a2ac047f1ca693012162dd723dfc88edcc94 /users
parent8f0d8e6dfe4632c461658a7db8f0eeb5261d62df (diff)
Changed wallpaper to change via helper app, initial settings for window
management
Diffstat (limited to 'users')
-rw-r--r--users/ryan/home.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/users/ryan/home.nix b/users/ryan/home.nix
index af8770b..9ff5870 100644
--- a/users/ryan/home.nix
+++ b/users/ryan/home.nix
@@ -95,11 +95,16 @@
95 95
96 programs.zsh = { 96 programs.zsh = {
97 enable = true; 97 enable = true;
98 initContent = '' 98 initContent = let
99 brewPath = if pkgs.stdenv.isDarwin && pkgs.stdenv.isAarch64 then ''
100 eval "$(/opt/homebrew/bin/brew shellenv)"
101 '' else "";
102 in ''
99 export GPG_TTY="$(tty)" 103 export GPG_TTY="$(tty)"
100 export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" 104 export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)"
101 gpgconf --launch gpg-agent 105 gpgconf --launch gpg-agent
102 gpg-connect-agent updatestartuptty /bye > /dev/null 106 gpg-connect-agent updatestartuptty /bye > /dev/null
107 ${brewPath}
103 ''; 108 '';
104 shellAliases = { 109 shellAliases = {
105 cat = "bat --paging=never"; 110 cat = "bat --paging=never";