mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 07:05:57 +01:00
33 lines
510 B
Nix
33 lines
510 B
Nix
{
|
|
inputs,
|
|
nixosTest,
|
|
homeManagerModules,
|
|
testProfile,
|
|
...
|
|
}:
|
|
nixosTest {
|
|
name = "home-manager-test";
|
|
skipLint = true;
|
|
|
|
nodes.machine = {
|
|
imports = [
|
|
testProfile
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
config = {
|
|
home-manager = {
|
|
sharedModules = [
|
|
homeManagerModules.nvf
|
|
];
|
|
|
|
users.test = {
|
|
home.stateVersion = "24.05";
|
|
programs.nvf.enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = "";
|
|
}
|