From 6401d25dfcafa72c4e36c135473f1b7165eb487f Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Tue, 10 Sep 2024 16:50:35 -0700 Subject: [PATCH] Switch to array of strings --- nixos/hosts/xps13_9350/home.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/xps13_9350/home.nix b/nixos/hosts/xps13_9350/home.nix index a4f7cacc..0b833f25 100644 --- a/nixos/hosts/xps13_9350/home.nix +++ b/nixos/hosts/xps13_9350/home.nix @@ -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";