Move zsh config to zsh.nix

This commit is contained in:
Leonora Tindall 2024-02-05 10:50:12 -06:00
parent 2aa3bd96f2
commit 52d34d7425
2 changed files with 10 additions and 7 deletions

View File

@ -5,15 +5,9 @@ in
imports = [ imports = [
./vim.nix ./vim.nix
./git.nix ./git.nix
./zsh.nix
]; ];
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableVteIntegration = true;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
htop htop
wget wget

9
zsh.nix Normal file
View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableVteIntegration = true;
};
}