core: set zsh as default shell for the root user

This commit is contained in:
Rouven Seifert 2024-04-16 21:44:48 +02:00
parent 375674b1b4
commit d5ab09207a
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 1 additions and 2 deletions

View file

@ -27,8 +27,6 @@
]; ];
}; };
}; };
users.users.root.shell = pkgs.zsh;
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";

View file

@ -1,5 +1,6 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
{ {
users.users.root.shell = pkgs.zsh;
programs.command-not-found.enable = false; programs.command-not-found.enable = false;
programs.nix-index-database.comma.enable = true; programs.nix-index-database.comma.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [