dotfiles.nix/nixos/fuchsia/programs/default.nix
2024-08-08 09:02:42 +08:00

10 lines
202 B
Nix

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