nixos-config/shared/zsh-fix.nix

7 lines
188 B
Nix
Raw Normal View History

2023-01-02 23:39:36 +01:00
{ 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;
}