From f874c36bbd83a101390ba84f3cf686f1b3b18dce Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 31 Mar 2022 18:54:34 -0400 Subject: [PATCH] Fix syntax errors --- home-linux.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home-linux.nix b/home-linux.nix index c6055f3..742bf34 100644 --- a/home-linux.nix +++ b/home-linux.nix @@ -9,8 +9,8 @@ ## Linux specific user configuration users = { mutableUsers = false; - isNormalUser = true; users.nathan = { + isNormalUser = true; extraGroups = [ "wheel" "networkmanager" "audio" "docker" "libvirtd" "uinput" "adbusers" "plugdev" ]; hashedPassword = "$6$ShBAPGwzKZuB7eEv$cbb3erUqtVGFo/Vux9UwT2NkbVG9VGCxJxPiZFYL0DIc3t4GpYxjkM0M7fFnh.6V8MoSKLM/TvOtzdWbYwI58."; openssh.authorizedKeys.keys = [ @@ -71,6 +71,6 @@ ## Multimedia # Easyeffects for the eq services.easyeffects.enable = true; - } - } - } + }; + }; +}