From 3cd6d165fe81cb0cab4d215dd6ae1c208b1c01b4 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 9 May 2024 01:05:21 -0400 Subject: [PATCH] users/root: set shell to zsh --- users/root/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; };