From f0172aa30e18ca999d4ca07fa4f7edf945339cb5 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 19 Jun 2021 12:25:35 -0400 Subject: [PATCH] BUGFIX! Case sensitivity --- README.org | 4 ++-- hosts/acernitro/configuration.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index e000525..06f7753 100644 --- a/README.org +++ b/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 diff --git a/hosts/acernitro/configuration.nix b/hosts/acernitro/configuration.nix index de4e28a..c094f8a 100644 --- a/hosts/acernitro/configuration.nix +++ b/hosts/acernitro/configuration.nix @@ -37,7 +37,7 @@ users.users.chris = { shell = pkgs.fish; - isnormaluser = true; - extragroups = [ "wheel" ]; + isNormalUser = true; + extraGroups = [ "wheel" ]; }; }