From b7cb12370c4bb8e94feec9edadb65d0a744c44d1 Mon Sep 17 00:00:00 2001 From: Luana Date: Mon, 16 Sep 2024 17:11:05 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20z=C3=A9=20e=20r=C3=A1dio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/macaroni/configuration.nix | 15 ++++++++++++++- hosts/rockhopper/configuration.nix | 15 +++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/hosts/macaroni/configuration.nix b/hosts/macaroni/configuration.nix index 94022a3..5e9fe01 100755 --- a/hosts/macaroni/configuration.nix +++ b/hosts/macaroni/configuration.nix @@ -58,6 +58,19 @@ packages = [ ]; }; - + users.users.ze = { + isNormalUser = true; + description = "Zé Guilherme"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = [ + ]; + }; + users.users.radio = { + isNormalUser = true; + description = "Radio"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = [ + ]; + }; } diff --git a/hosts/rockhopper/configuration.nix b/hosts/rockhopper/configuration.nix index aba864e..9422358 100755 --- a/hosts/rockhopper/configuration.nix +++ b/hosts/rockhopper/configuration.nix @@ -58,6 +58,21 @@ packages = [ ]; }; + users.users.ze = { + isNormalUser = true; + description = "Zé Guilherme"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = [ + ]; + }; + users.users.radio = { + isNormalUser = true; + description = "Radio"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = [ + ]; + }; + }