diff --git a/rcfiles/zshrc b/rcfiles/zshrc index 907a5b3..940cf14 100644 --- a/rcfiles/zshrc +++ b/rcfiles/zshrc @@ -81,5 +81,6 @@ if [[ -v "$WITHZELLIJ" && "$TERM_PROGRAM" != "vscode" ]]; then eval "$(zellij setup --generate-auto-start zsh)" fi -fortune +# removed because fortune-kind didn't build +#fortune diff --git a/ssh.nix b/ssh.nix index 11264db..0eb4965 100644 --- a/ssh.nix +++ b/ssh.nix @@ -5,11 +5,9 @@ # of the default options again, manually. enableDefaultConfig = false; enable = true; - matchBlocks = { - "*" = { - addKeysToAgent = "yes"; - forwardAgent = true; - }; + settings."*" = { + AddKeysToAgent = "yes"; + ForwardAgent = "yes"; }; }; diff --git a/timberhearth.nix b/timberhearth.nix index 4fce6c0..41ca92b 100644 --- a/timberhearth.nix +++ b/timberhearth.nix @@ -27,8 +27,6 @@ in ./web.nix ./zellij.nix ./zsh.nix - - ./communications-gui.nix ]; # Home Manager is pretty good at managing dotfiles. The primary way to manage diff --git a/vanity.nix b/vanity.nix index 213ad16..cdb0bf5 100644 --- a/vanity.nix +++ b/vanity.nix @@ -2,6 +2,5 @@ { home.packages = with pkgs; [ freshfetch - neofetch ]; } diff --git a/zsh.nix b/zsh.nix index 70948fe..cf1094b 100644 --- a/zsh.nix +++ b/zsh.nix @@ -13,7 +13,5 @@ initContent = (builtins.readFile ./rcfiles/zshrc); }; - home.packages = [ - (pkgs.callPackage ./custom/fortune-kind-custom.nix {}) - ]; + home.packages = []; }