From 1e882960c5cadd11c058056408f3f7e24c2a8b8c Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 13 Sep 2023 18:31:51 -0300 Subject: etc/nix/configuration.nix: Add config to enable ADB --- etc/nix/configuration.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'etc/nix/configuration.nix') diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 80d6214..38e0862 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -54,7 +54,10 @@ ]; }; - programs.less.enable = lib.mkForce false; + programs = { + adb.enable = true; + less.enable = lib.mkForce false; + }; environment = { systemPackages = with pkgs; [ @@ -229,7 +232,7 @@ isNormalUser = true; uid = 1000; description = "EuAndreh"; - extraGroups = [ "wheel" "networkmanager" "docker" ]; + extraGroups = [ "wheel" "networkmanager" "docker" "adbusers" ]; }; }; # From the Guix manual: -- cgit v1.2.3