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:15:55 -04:00
parent 554f73d477
commit df90f25778
+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 = {