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