diff --git a/users/root/default.nix b/users/root/default.nix index 42eaf78..0c29df8 100644 --- a/users/root/default.nix +++ b/users/root/default.nix @@ -1,5 +1,6 @@ -{ lib, config, self, ... }: { +{ lib, config, pkgs, ... }: { users.users.root = { + shell = pkgs.zsh; hashedPasswordFile = lib.mkIf config.modules.secrets.enable config.secrets.root-password; openssh.authorizedKeys.keys = import ./ssh-keys.nix; };