os-config: set zsh as default shell for users
This commit is contained in:
parent
f374e1a698
commit
4cd531103a
|
@ -5,10 +5,15 @@ in
|
||||||
{
|
{
|
||||||
options.materus.profile.zsh.enable = materusArg.pkgs.lib.mkBoolOpt true "Enable materus system zsh config";
|
options.materus.profile.zsh.enable = materusArg.pkgs.lib.mkBoolOpt true "Enable materus system zsh config";
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
users.defaultUserShell = pkgs.zsh;
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableGlobalCompInit=false;
|
enableGlobalCompInit=false;
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
|
if [[ $(${pkgs.coreutils}/bin/echo $TTY | ${pkgs.gnugrep}/bin/grep "/dev/tty") ]] && [[ "$TERM" == "linux" ]]; then
|
||||||
|
setfont lat2-16 -m 8859-2
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ''${__MATERUS_HM_ZSH:-0} == 0 ]]; then
|
if [[ ''${__MATERUS_HM_ZSH:-0} == 0 ]]; then
|
||||||
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
source ${pkgs.grml-zsh-config}/etc/zsh/zshrc
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue