From 49030fc9d47cafbf76925f4e420740416bb0d518 Mon Sep 17 00:00:00 2001 From: Andrew Bryant Date: Fri, 14 Aug 2026 16:11:14 -0400 Subject: [PATCH] tests/default.nix: removed user test, added password declaration for root user This makes testing/debugging easier by allowing to login as root directly. The previous test system configuration added a step to this process by forcing devs to login as test and use sudo to escalate to root. --- tests/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/default.nix b/tests/default.nix index cbae60b..3eb6a12 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -8,10 +8,8 @@ nixpkgs.config.allowUnfree = true; - users.users.test = { - isNormalUser = true; - extraGroups = [ "wheel" ]; - initialPassword = "test"; + users.users.root = { + initialPassword = "toor"; }; services.invoiceninja = {