dotfiles.nix/nixos/fuchsia/programs/default.nix
2024-07-26 09:13:04 +08:00

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;
};
}