Minor changes

This commit is contained in:
Vivian 2021-11-03 00:52:39 +01:00
parent bb3164b10d
commit c73b736b57
3 changed files with 10 additions and 5 deletions

View file

@ -21,9 +21,13 @@
# otherwise it'll override the grml prompt
promptInit = "";
};
environment.pathsToLink = [ "/share/zsh" ];
# Install Neovim and set it as alias for vi(m)
programs.neovim.enable = true;
programs.neovim.viAlias = true;
# Disable sudo prompt for `wheel` users.
security.sudo.wheelNeedsPassword = false;
@ -55,5 +59,5 @@
};
# Setup packages available everywhere
environment.systemPackages = with pkgs; [ fzf git htop rsync ripgrep vim zoxide ];
environment.systemPackages = with pkgs; [ fzf git htop rsync ripgrep zoxide ];
}