diff options
author | Franck Cuny <franck@fcuny.net> | 2023-03-11 19:23:54 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-03-11 19:23:54 -0800 |
commit | 257a130da69be61df23dd1041ea8d00e558d4e15 (patch) | |
tree | 53bcc8a843151503d1df82e252d5d252f99fcfe2 /home/shell | |
parent | home/swaybar: add an indicator for systemd unit (diff) | |
download | world-257a130da69be61df23dd1041ea8d00e558d4e15.tar.gz |
home/zsh: load ssh-agent before sway
We need to start the ssh agent (if needed) before we start sway.
Diffstat (limited to '')
-rw-r--r-- | home/shell/zsh/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home/shell/zsh/default.nix b/home/shell/zsh/default.nix index 67cc370..408ba9b 100644 --- a/home/shell/zsh/default.nix +++ b/home/shell/zsh/default.nix @@ -41,12 +41,13 @@ in # variables from home-manager are not set yet otherwise (and I # need them for things like firefox or emacs). initExtra = lib.concatMapStrings builtins.readFile [ + ./ssh-agent.zsh ./sway.zsh ./completion-style.zsh ./options.zsh ./prompt.zsh ./tmux.zsh - ./ssh-agent.zsh + ./new-go-project.zsh ]; }; }; |