Browse Source

BUGFIX! Case sensitivity

main
parent
commit
f0172aa30e
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 4
      README.org
  2. 4
      hosts/acernitro/configuration.nix

4
README.org

@ -550,8 +550,8 @@ This configuration is nearly identical to the default, except for a few key diff
users.users.chris = {
shell = pkgs.fish;
isnormaluser = true;
extragroups = [ "wheel" ];
isNormalUser = true;
extraGroups = [ "wheel" ];
};
}
#+END_SRC

4
hosts/acernitro/configuration.nix

@ -37,7 +37,7 @@
users.users.chris = {
shell = pkgs.fish;
isnormaluser = true;
extragroups = [ "wheel" ];
isNormalUser = true;
extraGroups = [ "wheel" ];
};
}
Loading…
Cancel
Save