diff --git a/README.md b/README.md index 9fbb967..69a4f46 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,6 @@ ## After install -Initial password for root is `root`, and for user is `user`. +Initial user password for is `user`. Default network configuration is VPN-only, so if you don't have plans to use it you need to change iptables rules (remove `iptables -P OUTPUT DROP` from `networking.nix`) and remove `services.openvpn.servers.vpn` from `networking.nix`. diff --git a/configuration.nix b/configuration.nix index f22a2db..c72cc81 100644 --- a/configuration.nix +++ b/configuration.nix @@ -35,10 +35,7 @@ in { } ]; - users.users.root = { - initialPassword = "root"; - shell = pkgs.zsh; - }; + users.users.root.shell = pkgs.zsh; users.users.user = { initialPassword = "user"; isNormalUser = true;