23 lines
691 B
Nix
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;
|
|
}
|