this works

This commit is contained in:
Christoph Hollizeck 2024-03-22 14:39:18 +00:00
commit e874f1de20
6 changed files with 432 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
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 firefox];
sessionVariables = {EDITOR = "nvim";};
shellAliases = {vimdiff = "nvim -d";};
stateVersion = "23.11";
};
}