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:
+2
-4
@@ -8,10 +8,8 @@
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
users.users.test = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
initialPassword = "test";
|
||||
users.users.root = {
|
||||
initialPassword = "toor";
|
||||
};
|
||||
|
||||
services.invoiceninja = {
|
||||
|
||||
Reference in New Issue
Block a user