update homemanager settings

This commit is contained in:
christoph.hollizeck 2024-03-26 22:33:14 +01:00
parent d54011473d
commit 2697a0ef48

View file

@ -2,23 +2,20 @@
lib, lib,
pkgs, pkgs,
config, config,
osConfig ? {},
format ? "unknown",
... ...
}: }:
# User information gathered by Snowfall Lib is available. with lib.wyrdgard; {
let wyrdgard = {
name = config.snowfallorg.user.name; apps.cli-apps = {
home = config.snowfallorg.user.home.directory; fish = enabled;
in { home-manager = enabled;
home = {
packages = with pkgs; [neovim];
sessionVariables = {EDITOR = "nvim";};
shellAliases = {
vim = "nvim";
vimdiff = "nvim -d";
}; };
stateVersion = "23.11"; tools = {
git = enabled;
direnv = enabled;
};
}; };
} }