Files
nixos/Droidnix/generated/modules/terminals/zsh.nix
T
2026-03-22 15:02:37 +00:00

23 lines
691 B
Nix

{ 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;
}