#2 first somewhat working iteration, there seems to be a problem with home manager still

This commit is contained in:
Christoph Hollizeck 2024-03-26 17:28:20 +01:00
parent 4a3a48af59
commit 236ff25b49
11 changed files with 118 additions and 16 deletions

View file

@ -10,11 +10,13 @@ let
in
{
home = {
packages = with pkgs; [ neovim firefox ];
packages = with pkgs; [ neovim ];
sessionVariables = { EDITOR = "nvim"; };
shellAliases = { vimdiff = "nvim -d"; };
shellAliases = {
vim = "nvim";
vimdiff = "nvim -d"; };
stateVersion = "23.11";
};