diff --git a/hosts/jeran/configuration.nix b/hosts/jeran/configuration.nix index 9e772be..429b30d 100644 --- a/hosts/jeran/configuration.nix +++ b/hosts/jeran/configuration.nix @@ -5,12 +5,14 @@ "${inputs.nixpkgs}/nixos/modules/virtualisation/google-compute-image.nix" ]; security.sudo.wheelNeedsPassword = false; - users.motd = (builtin.readFile "motd"); users.defaultUserShell = pkgs.zsh; - users.extraUsers.daylin = { - isNormalUser = true; - extraGroups = [ "wheel" "docker" ]; - useDefaultShell = true; + users.extraUsers = { + daylin = { + isNormalUser = true; + extraGroups = [ "wheel" "docker" ]; + useDefaultShell = true; + + }; }; services.openssh.passwordAuthentication = true; services.resolved.enable = true;