this works

This commit is contained in:
Christoph Hollizeck 2024-03-22 14:39:18 +00:00
commit 851cb6fe38
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
7 changed files with 433 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";
};
}