1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{ inputs, pkgs, ... }: { home = { username = "git"; homeDirectory = "/home/git"; }; home.packages = with pkgs; [ git-lfs ]; imports = (map (path: ../../config/${path}) [ "git" "nvim" ]); home.stateVersion = "23.11"; }