nix-community.nixvim/tests/platforms/hm.nix
Gaetan Lepage da74b41118 treewide: replace mentions of 24.11 with 25.05
(cherry picked from commit 764a9b8dda)
2025-05-24 08:44:42 +00:00

23 lines
376 B
Nix

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