zsh: Install mcfly via home-manager option
Alan Pearce alan@alanpearce.eu
Tue, 08 Dec 2020 21:37:34 +0100
1 files changed, 5 insertions(+), 2 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -38,6 +38,11 @@ ln ~/.cache/zsh/history ${config.home.sessionVariables.XDG_DATA_HOME}/zsh/history fi ''; + programs.mcfly = { + enable = true; + enableLightTheme = true; + }; + programs.zsh = { enable = true; @@ -223,8 +228,6 @@ fc -l -m "$1*" -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less } source ${pkgs.fzf}/share/fzf/key-bindings.zsh - - source ${pkgs.unstable.mcfly}/share/mcfly/mcfly.zsh '' + builtins.readFile ../zsh/zshrc; };