From b2e513857cf5839682cb565cb74251855d751cb2 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Sat, 10 Nov 2018 15:25:21 +0100 Subject: [PATCH] customisation shell zsh --- systems/common.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/systems/common.nix b/systems/common.nix index 4a6f57b..69bec92 100644 --- a/systems/common.nix +++ b/systems/common.nix @@ -70,8 +70,12 @@ ''; ohMyZsh = { enable = true; - plugins = [ "git" "colored-man-pages" "command-not-found" "extract" ]; - theme = "bureau"; + plugins = [ "git" "colored-man-pages" "command-not-found" "extract" "nix" ]; + customPkgs = with pkgs;[ + spaceship-prompt + nix-zsh-completions + ]; + theme = "spaceship"; }; };