diff --git a/nixos/users/jared/default.nix b/nixos/users/jared/default.nix
index c163a85d..d6fe4294 100644
--- a/nixos/users/jared/default.nix
+++ b/nixos/users/jared/default.nix
@@ -6,13 +6,11 @@ in {
   imports = [  ]  ++ lib.optional (builtins.isString desktop) ./desktop.nix;
 
   users = {
-    mutableUsers = false;
     users.jared = {
       isNormalUser = true;
       description = "Jared Coppeland";
       # video is required for the "light" command to work
       extraGroups = [ "networkmanager" ] 
-        ++ ifExists [ "keys"      ]
         ++ ifExists [ "audio"     ]
         ++ ifExists [ "video"     ]; 
       shell = pkgs.fish;