update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:36:22 +01:00
parent 2697a0ef48
commit 082492da6a
3 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
lib,
pkgs,
config,
...
}:
# User information gathered by Snowfall Lib is available.
let
name = config.snowfallorg.user.name;
home = config.snowfallorg.user.home.directory;
in {
home = {
packages = with pkgs; [neovim];
sessionVariables = {EDITOR = "nvim";};
shellAliases = {
vim = "nvim";
vimdiff = "nvim -d";
};
stateVersion = "23.11";
};
}