From e1915db1831783d85fc5af8ceecc71c46122b8ee Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 19 Jun 2021 14:49:08 -0400 Subject: [PATCH] Include user in network manager settings --- README.org | 2 +- hosts/raspberry/configuration.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 7c56117..245015e 100644 --- a/README.org +++ b/README.org @@ -662,7 +662,7 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/ users.users.chris = { shell = pkgs.fish; isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "networkmanager" ]; }; } #+END_SRC diff --git a/hosts/raspberry/configuration.nix b/hosts/raspberry/configuration.nix index aa7dad9..e4f7edd 100644 --- a/hosts/raspberry/configuration.nix +++ b/hosts/raspberry/configuration.nix @@ -32,6 +32,6 @@ users.users.chris = { shell = pkgs.fish; isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "networkmanager" ]; }; }