To enable the external interrupt for Port C, for example, it would be something like:
let dp = atmega_hal::Peripherals::take().unwrap();
dp.EXINT.pcicr.modify(|_, w| w.pcie().bits(0b010));
but it seems rather silly to need to modify all 3 bits when only 1 bit is desired to be changed. I would think something like:
dp.EXINT.pcicr.modify(|_, w| w.pcie1().set_bit());
but pcie1() doesn't appear to exist.