nixos-config/modules/editors/lvim/home.nix
Glen Goodwin ceb75c42fd updates
2023-08-15 15:49:35 -04:00

13 lines
149 B
Nix

{ pkgs, ... }:
{
home.file."/home/glen/.config/lvim" = {
source = ./lvim;
recursive = true;
};
home.packages = with pkgs; [
];
}