all repos — nixfiles @ 07647341f530c9755d7fc1e5051c2ccd3b8ed5b7

System and user configuration, managed by nix and home-manager

zsh: Install mcfly via home-manager option
Alan Pearce alan@alanpearce.eu
Tue, 08 Dec 2020 21:37:34 +0100
commit

07647341f530c9755d7fc1e5051c2ccd3b8ed5b7

parent

e81c4c78f9491816408a7fc91bc2b90826825863

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M user/settings/zsh.nixuser/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;
   };