split zsh config into several nix files

This commit is contained in:
2024-11-15 09:58:31 -05:00
parent 5cd144ef33
commit 6d9e054a7a
9 changed files with 111 additions and 111 deletions

View File

@@ -1,4 +1,4 @@
{ username, lib, config, ... }: {
{ username, ... }: {
home.username = "${username}"; # Replace with your actual username
home.homeDirectory =
"/home/${username}"; # Replace with your actual home directory
@@ -25,7 +25,12 @@
spicetifyConfig.enable = true;
starshipConfig.enable = true;
swayncConfig.enable = true;
zshConfig.enable = true;
zshConfig = {
shellAliases.enable = true;
envVariables.enable = true;
shellOptions.enable = true;
extraConfig.enable = true;
};
};
# modules/home/programs