diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index 976f8ab..facfe07 100755 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -13,6 +13,7 @@ ../../shared/input.nix ../../shared/sops.nix ../../shared/gpg.nix + ../../shared/zsh-fix.nix ]; # Use the systemd-boot EFI boot loader. diff --git a/shared/zsh-fix.nix b/shared/zsh-fix.nix new file mode 100644 index 0000000..85d3307 --- /dev/null +++ b/shared/zsh-fix.nix @@ -0,0 +1,6 @@ +{ config, ... }: +{ + # This is a fix for zsh in the home manager + # If you only enable it in home manager, some important files for completion are missing + programs.zsh.enable = true; +}