dotfiles.nix/nixos/fuchsia/programs/default.nix

13 lines
206 B
Nix
Raw Normal View History

2024-07-26 09:13:04 +08:00
{ ... }:
{
programs = {
zsh.enable = true;
# Load and unload environment variables.
direnv.enable = true;
# Android debug bridge: communicate with devices.
adb.enable = true;
};
}