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.
This commit is contained in:
2026-08-14 16:11:14 -04:00
parent 310797ccb1
commit 49030fc9d4
+2 -4
View File
@@ -8,10 +8,8 @@
nixpkgs.config.allowUnfree = true;
users.users.test = {
isNormalUser = true;
extraGroups = [ "wheel" ];
initialPassword = "test";
users.users.root = {
initialPassword = "toor";
};
services.invoiceninja = {