diff --git a/users/profiles/shells/all.nix b/users/profiles/shells/all.nix index 53721df..f093fca 100644 --- a/users/profiles/shells/all.nix +++ b/users/profiles/shells/all.nix @@ -2,6 +2,7 @@ imports = [ ./bash.nix ./fish.nix + ./ion.nix # ./nushell.nix ./zsh.nix ]; diff --git a/users/profiles/shells/ion.nix b/users/profiles/shells/ion.nix new file mode 100644 index 0000000..9fc5651 --- /dev/null +++ b/users/profiles/shells/ion.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: { + imports = [ ./common.nix ]; + + programs = { + ion = { + enable = true; + }; + + starship.enableIonIntegration = true; + }; +}