13 lines
206 B
Nix
13 lines
206 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs = {
|
||
|
zsh.enable = true;
|
||
|
# Load and unload environment variables.
|
||
|
direnv.enable = true;
|
||
|
# Android debug bridge: communicate with devices.
|
||
|
adb.enable = true;
|
||
|
};
|
||
|
}
|
||
|
|