feat(shells): add ion shell

This commit is contained in:
Infinidoge 2022-05-09 13:15:58 -04:00
parent 78882102b9
commit 969e644e74
2 changed files with 12 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [
./bash.nix
./fish.nix
./ion.nix
# ./nushell.nix
./zsh.nix
];

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }: {
imports = [ ./common.nix ];
programs = {
ion = {
enable = true;
};
starship.enableIonIntegration = true;
};
}