diff --git a/modules/shell_aliases.nix b/modules/shell_aliases.nix index b8e9352..4e5e228 100644 --- a/modules/shell_aliases.nix +++ b/modules/shell_aliases.nix @@ -5,6 +5,7 @@ let "scu" = "systemctl --user"; "hm" = "home-manager"; "ns" = "nix search nixpkgs"; + "dk" = "docker"; }; in { diff --git a/modules/zsh.nix b/modules/zsh.nix index 7909130..bfbd4a9 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -22,10 +22,6 @@ setopt CHASE_LINKS setopt PUSHD_TO_HOME ''; - # localVariables = { - # POWERLEVEL9K_LEFT_PROMPT_ELEMENTS = [ "os_icon" "dir" "vcs" "prompt_char" ]; - # POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS = [ "status" "command_execution_time" "background_jobs" "direnv" "nix_shell" "time" "vpn_ip" ] - # }; oh-my-zsh = { enable = true; @@ -44,5 +40,9 @@ extraConfig = ""; }; + # prezto = { + # enable = true; + # }; + }; }