Regenerated

This commit is contained in:
2026-03-22 15:02:37 +00:00
parent 2f8f61e553
commit 540cced1e6
31 changed files with 1573 additions and 0 deletions
@@ -0,0 +1,22 @@
{ lib, pkgs, config, ... }:
{
################################################
# System-wide installation of Zsh + Oh-My-Zsh
################################################
environment.systemPackages = [
pkgs.zsh
pkgs.oh-my-zsh
];
################################################
# Make Zsh the default shell for all users
################################################
users.defaultUserShell = pkgs.zsh;
################################################
# Disable Home Manager shell check warnings
################################################
users.users.henrov.ignoreShellProgramCheck = true;
users.users.root.ignoreShellProgramCheck = true;
}