11 lines
161 B
Nix
11 lines
161 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [ ./common.nix ];
|
|
|
|
programs = {
|
|
ion = {
|
|
enable = true;
|
|
};
|
|
|
|
starship.enableIonIntegration = true;
|
|
};
|
|
}
|