Set networkmanager group in the ccr module

This commit is contained in:
Andrea Ciceri 2024-12-06 11:38:21 +01:00
parent 73449da88f
commit 9dfb48ba0c
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
2 changed files with 1 additions and 1 deletions

View file

@ -86,6 +86,7 @@ in
"dialout"
"systemd-journal"
"camera"
"networkmanager"
];
ccr.modules = [
"shell"

View file

@ -1,6 +1,5 @@
{ lib, ... }:
{
networking.networkmanager.enable = true;
ccr.extraGroups = [ "networkmanager" ];
networking.useDHCP = lib.mkDefault true;
}