update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:36:22 +01:00 committed by Christoph Hollizeck
parent b892f80cff
commit 486836fae6
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
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";
};
}