From 32fc80e83eca1ff6d587cbac3caeb4d7b2fa7642 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Mon, 4 Mar 2024 13:33:50 +0100 Subject: [PATCH] fix: enable zsh integration for thefuck --- zsh.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh.nix b/zsh.nix index 6d6cfeb..fe6f0ac 100755 --- a/zsh.nix +++ b/zsh.nix @@ -1,6 +1,10 @@ { config, pkgs, lib, ... }: { - programs.thefuck.enable = true; + programs.thefuck = { + enable = true; + enableZshIntegration = true; + }; + programs.zsh = { enable = true;