From 969e644e744a59532e0e6c78d5e61bb9a12579e4 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 9 May 2022 13:15:58 -0400 Subject: [PATCH] feat(shells): add ion shell --- users/profiles/shells/all.nix | 1 + users/profiles/shells/ion.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 users/profiles/shells/ion.nix 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; + }; +}