fix(wpcarro/diogenes): programs.fish.enable = true

Hopefully this installs the KBDs for fzf, which is already installed.

Change-Id: Ice7555c45d38e2e07f9fb16d3ddfc5b971c93cf6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4593
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
William Carroll 2021-12-24 19:02:46 -05:00 committed by clbot
parent c154e6689d
commit f65126a041

View file

@ -50,11 +50,14 @@ in {
sudo.wheelNeedsPassword = false;
};
programs.ssh = {
startAgent = true;
extraConfig = ''
programs = {
fish.enable = true;
ssh = {
startAgent = true;
extraConfig = ''
AddKeysToAgent yes
'';
};
};
environment.systemPackages = wpcarro.common.shell-utils;