ZSH fixes

This commit is contained in:
kat witch 2021-08-07 04:59:43 +01:00
parent b366f45d92
commit 8446e95a5f
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
3 changed files with 25 additions and 6 deletions

View file

@ -9,6 +9,7 @@
./system.nix
./home.nix
./profiles.nix
./shell.nix
./base16.nix
./net.nix
./access.nix

View file

@ -0,0 +1,8 @@
{ config, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
};
}