nix-community.nixvim/tests/modules/hm.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
384 B
Nix
Raw Normal View History

{
nixvim,
pkgs,
home-manager,
}:
home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
{
home.username = "nixvim";
home.homeDirectory = "/invalid/dir";
home.stateVersion = "23.05";
programs.nixvim = {
enable = true;
};
programs.home-manager.enable = true;
}
nixvim.homeManagerModules.nixvim
];
}