Regenerated

This commit is contained in:
2026-03-22 15:16:28 +00:00
parent 540cced1e6
commit dddbba83ed
38 changed files with 9073 additions and 1611 deletions
@@ -1,22 +0,0 @@
{ 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;
}