Initial commit

This commit is contained in:
stubbfel
2017-11-17 02:11:40 +01:00
commit 7c7689ef25
13 changed files with 229 additions and 0 deletions

10
programs/zsh.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
syntaxHighlighting.enable = true;
};
}