From 6617ba346000eb2e9e48edd64687fafbeecae340 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 19 Jun 2021 09:28:57 -0400 Subject: [PATCH] BUGFIX! Case sensitivity --- README.org | 4 ++-- hosts/raspberry/configuration.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 4050adb..efc2508 100644 --- a/README.org +++ b/README.org @@ -712,8 +712,8 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/ users.users.chris = { shell = pkgs.fish; - isnormaluser = true; - extragroups = [ "wheel" ]; + isNormalUser = true; + extraGroups = [ "wheel" ]; }; } #+END_SRC diff --git a/hosts/raspberry/configuration.nix b/hosts/raspberry/configuration.nix index 8b45b91..15aaf14 100644 --- a/hosts/raspberry/configuration.nix +++ b/hosts/raspberry/configuration.nix @@ -19,7 +19,7 @@ users.users.chris = { shell = pkgs.fish; - isnormaluser = true; - extragroups = [ "wheel" ]; + isNormalUser = true; + extraGroups = [ "wheel" ]; }; }