upgrade for new timberhearth

This commit is contained in:
Leonora Tindall 2026-06-28 17:45:30 -05:00
parent 44f0997380
commit 9744548e84
5 changed files with 6 additions and 12 deletions

View File

@ -81,5 +81,6 @@ if [[ -v "$WITHZELLIJ" && "$TERM_PROGRAM" != "vscode" ]]; then
eval "$(zellij setup --generate-auto-start zsh)" eval "$(zellij setup --generate-auto-start zsh)"
fi fi
fortune # removed because fortune-kind didn't build
#fortune

View File

@ -5,11 +5,9 @@
# of the default options again, manually. # of the default options again, manually.
enableDefaultConfig = false; enableDefaultConfig = false;
enable = true; enable = true;
matchBlocks = { settings."*" = {
"*" = { AddKeysToAgent = "yes";
addKeysToAgent = "yes"; ForwardAgent = "yes";
forwardAgent = true;
};
}; };
}; };

View File

@ -27,8 +27,6 @@ in
./web.nix ./web.nix
./zellij.nix ./zellij.nix
./zsh.nix ./zsh.nix
./communications-gui.nix
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage

View File

@ -2,6 +2,5 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
freshfetch freshfetch
neofetch
]; ];
} }

View File

@ -13,7 +13,5 @@
initContent = (builtins.readFile ./rcfiles/zshrc); initContent = (builtins.readFile ./rcfiles/zshrc);
}; };
home.packages = [ home.packages = [];
(pkgs.callPackage ./custom/fortune-kind-custom.nix {})
];
} }