Regenerated

This commit is contained in:
2026-03-30 13:54:26 +00:00
parent 3fca464af0
commit e34a33f158
3 changed files with 306 additions and 294 deletions
+294 -290
View File
File diff suppressed because it is too large Load Diff
+6 -2
View File
@@ -1189,12 +1189,16 @@ in
home-manager.users = { home-manager.users = {
${username} = { ${username} = {
programs.zsh.enable = true; programs.zsh.enable = true;
programs.zsh.loginShell = true;
# Optional: include the generated zshrc if you want # Optional: include the generated zshrc if you want
home.file.".config/zsh/.zshrc".source = generatedZsh; home.file.".config/zsh/.zshrc".source = generatedZsh;
}; };
}; };
#################################
# Set Zsh as default login shell for the user (NixOS)
#################################
users.users."${username}".shell = pkgs.zsh;
} }
#+END_SRC #+END_SRC
@@ -46,10 +46,14 @@ in
home-manager.users = { home-manager.users = {
${username} = { ${username} = {
programs.zsh.enable = true; programs.zsh.enable = true;
programs.zsh.loginShell = true;
# Optional: include the generated zshrc if you want # Optional: include the generated zshrc if you want
home.file.".config/zsh/.zshrc".source = generatedZsh; home.file.".config/zsh/.zshrc".source = generatedZsh;
}; };
}; };
#################################
# Set Zsh as default login shell for the user (NixOS)
#################################
users.users."${username}".shell = pkgs.zsh;
} }