universe/users/modules/global/shells/ion.nix

11 lines
161 B
Nix

{ config, pkgs, ... }: {
imports = [ ./common.nix ];
programs = {
ion = {
enable = true;
};
starship.enableIonIntegration = true;
};
}