Switch to array of strings
Some checks failed
SSH and echo to file / ssh (push) Failing after 5s

This commit is contained in:
Joey Hafner 2024-09-10 16:50:35 -07:00
parent 574ce1eff1
commit 6401d25dfc
No known key found for this signature in database

View File

@ -4,7 +4,9 @@
home.username = "joey";
home.homeDirectory = "/home/joey";
home.stateVersion = "24.05";
home.packages = [];
home.packages = [
fastfetch
];
home.file = {};
home.sessionVariables = {};
programs.home-manager.enable = true;
@ -15,7 +17,11 @@
dotDir = ".config/zsh";
enableCompletion = true;
enableHistory = true;
initExtra = "bindkey -e\nbindkey '^[[1;5D' backward-word\nbindkey '^[[1;5C' forward-word";
initExtra = [
"bindkey -e"
"bindkey '^[[1;5D' backward-word"
"bindkey '^[[1;5C' forward-word"
];
plugins = [
{
name = "zsh-autosuggestions";