From 658ef9afdb477ad62a723f850b47b3ba3763db3c Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 22:47:02 -0400 Subject: [PATCH] feat: add common shell import --- users/profiles/shells/common.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 users/profiles/shells/common.nix diff --git a/users/profiles/shells/common.nix b/users/profiles/shells/common.nix new file mode 100644 index 0000000..7fee820 --- /dev/null +++ b/users/profiles/shells/common.nix @@ -0,0 +1,7 @@ +{ ... }: { + imports = [ + ./bash.nix + ./fish.nix + ./zsh.nix + ]; +}