diff options
-rw-r--r-- | etc/nix/configuration.nix | 7 |
1 files changed, 5 insertions, 2 deletions
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: |