[NixOS] Configure zsh in NixOS configuration

This commit is contained in:
2021-07-24 20:24:58 -06:00
parent d3df4902dc
commit 08774bd180
2 changed files with 14 additions and 3 deletions

View File

@@ -40,8 +40,6 @@
'';
};
programs.zsh.enable = true;
services.avahi = {
enable = true;
nssmdns = true;
@@ -73,6 +71,19 @@
# TODO: Add a comment explaining what this does.
services.gnome.at-spi2-core.enable = true;
# Shell configuration
programs.zsh = {
enable = true;
syntaxHighlighting = {
enable = true;
};
ohMyZsh = {
enable = true;
plugins = [ "git" "sudo" "pip" ];
};
spaceship-prompt.enable = true;
};
services.openssh.enable = true;
services.autorandr.enable = true;