Browse Source

BUGFIX! Case sensitivity

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

4
README.org

@ -712,8 +712,8 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/
users.users.chris = { users.users.chris = {
shell = pkgs.fish; shell = pkgs.fish;
isnormaluser = true;
extragroups = [ "wheel" ];
isNormalUser = true;
extraGroups = [ "wheel" ];
}; };
} }
#+END_SRC #+END_SRC

4
hosts/raspberry/configuration.nix

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