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

10 lines
202 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{...}: {
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;
};
}