From ce50a18adfb0ac6f908cfe078def0e083b24b41a Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Tue, 7 May 2024 12:03:42 +0200 Subject: [PATCH] Added user to networkmanager group --- home-manager/apps.nix | 1 + machines/luna/configuration.nix | 5 ++++- machines/terra/configuration.nix | 5 ++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/home-manager/apps.nix b/home-manager/apps.nix index 56b3aa9..dd7857b 100644 --- a/home-manager/apps.nix +++ b/home-manager/apps.nix @@ -53,6 +53,7 @@ python311Packages.threadpoolctl qbittorrent retext + solaar spotify whatsapp-for-linux zsh diff --git a/machines/luna/configuration.nix b/machines/luna/configuration.nix index 0029c23..b83097e 100644 --- a/machines/luna/configuration.nix +++ b/machines/luna/configuration.nix @@ -65,7 +65,10 @@ initialPassword = "1234"; isNormalUser = true; openssh.authorizedKeys.keys = []; - extraGroups = ["wheel"]; + extraGroups = [ + "wheel" + "networkmanager" + ]; }; }; diff --git a/machines/terra/configuration.nix b/machines/terra/configuration.nix index 4998652..11b65f8 100644 --- a/machines/terra/configuration.nix +++ b/machines/terra/configuration.nix @@ -94,7 +94,10 @@ initialPassword = "1234"; isNormalUser = true; openssh.authorizedKeys.keys = []; - extraGroups = ["wheel"]; + extraGroups = [ + "wheel" + "networkmanager" + ]; }; };