From 45b102f8a4911380cb1b5a3c3785d10e75c3da2b Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 24 Jan 2023 13:36:18 -0600 Subject: [PATCH] w --- hosts/jeran/configuration.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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;