diff options
author | EuAndreh <eu@euandre.org> | 2023-09-13 18:31:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-09-13 18:31:51 -0300 |
commit | 1e882960c5cadd11c058056408f3f7e24c2a8b8c (patch) | |
tree | 92dc24db93756310a4adceba30c2feb2a7848df1 | |
parent | etc/guix/home.scm: Add "jdk" output of "openjdk" package (diff) | |
download | dotfiles-1e882960c5cadd11c058056408f3f7e24c2a8b8c.tar.gz dotfiles-1e882960c5cadd11c058056408f3f7e24c2a8b8c.tar.xz |
etc/nix/configuration.nix: Add config to enable ADB
-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: |