fixed zsh completions

This commit is contained in:
Rouven Seifert 2023-01-02 23:39:36 +01:00
parent 8d7e220d9b
commit 01cc0c5c11
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 7 additions and 0 deletions

View file

@ -13,6 +13,7 @@
../../shared/input.nix ../../shared/input.nix
../../shared/sops.nix ../../shared/sops.nix
../../shared/gpg.nix ../../shared/gpg.nix
../../shared/zsh-fix.nix
]; ];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.

6
shared/zsh-fix.nix Normal file
View file

@ -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;
}