This commit is contained in:
2025-05-01 18:27:56 -05:00
parent 03102cfaf5
commit 239c37bf98
5 changed files with 20 additions and 2 deletions

View File

@@ -1,9 +1,8 @@
{
imports = [
./hyprland
./zsh
./git.nix
./home-manager.nix
./packages.nix
./user.nix
];
}

View File

@@ -0,0 +1,5 @@
{
imports = [
./zsh.nix
];
}

8
modules/home/zsh/zsh.nix Normal file
View File

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