diff options
author | Alan Pearce | 2020-12-08 21:37:34 +0100 |
---|---|---|
committer | Alan Pearce | 2020-12-08 21:37:34 +0100 |
commit | 07647341f530c9755d7fc1e5051c2ccd3b8ed5b7 (patch) | |
tree | b6ef2b8a8f7e9fee9b5ed882cb19b767c281b220 /user | |
parent | e81c4c78f9491816408a7fc91bc2b90826825863 (diff) | |
download | nixfiles-07647341f530c9755d7fc1e5051c2ccd3b8ed5b7.tar.lz nixfiles-07647341f530c9755d7fc1e5051c2ccd3b8ed5b7.tar.zst nixfiles-07647341f530c9755d7fc1e5051c2ccd3b8ed5b7.zip |
zsh: Install mcfly via home-manager option
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/zsh.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 13bd5fb2..9b48ef70 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -38,6 +38,11 @@ in fi ''; + programs.mcfly = { + enable = true; + enableLightTheme = true; + }; + programs.zsh = { enable = true; @@ -224,8 +229,6 @@ in source ${pkgs.fzf}/share/fzf/key-bindings.zsh - source ${pkgs.unstable.mcfly}/share/mcfly/mcfly.zsh - '' + builtins.readFile ../zsh/zshrc; }; |