Regenerated
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user