mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 12:26:00 +01:00
19 lines
239 B
Nix
19 lines
239 B
Nix
{
|
|
nixosTest,
|
|
nixosModules,
|
|
...
|
|
}:
|
|
nixosTest {
|
|
name = "home-manager-test";
|
|
|
|
nodes.machine = {
|
|
imports = [
|
|
nixosModules.nvf
|
|
../profiles/minimal.nix
|
|
];
|
|
|
|
programs.nvf.enable = true;
|
|
};
|
|
|
|
testScript = "";
|
|
}
|