added adb
This commit is contained in:
parent
7673d1f9a5
commit
ea6ae2f957
2 changed files with 7 additions and 0 deletions
6
modules/apps/android.nix
Normal file
6
modules/apps/android.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ conf, lib }: let
|
||||
inherit (lib) mkIf;
|
||||
in mkIf conf.apps.enable {
|
||||
programs.adb.enable = true;
|
||||
users.users.${conf.username}.extraGroups = [ "adbusers" ];
|
||||
}
|
|
@ -8,6 +8,7 @@ in {
|
|||
./notes.nix
|
||||
./programs.nix
|
||||
./themes.nix
|
||||
./android.nix
|
||||
];
|
||||
|
||||
config = mkIf conf.apps.enable {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue