neovim-flake/flake/tests/checks/nixosModule.nix

22 lines
256 B
Nix
Raw Normal View History

2024-05-06 15:13:38 +02:00
{
nixosTest,
nixosModules,
...
}:
nixosTest {
2024-05-06 15:43:05 +02:00
name = "nixos-test";
2024-05-06 15:13:38 +02:00
nodes.machine = {
imports = [
nixosModules.nvf
../profiles/minimal.nix
];
2024-05-06 15:43:05 +02:00
config = {
programs.nvf.enable = true;
};
2024-05-06 15:13:38 +02:00
};
testScript = "";
}