mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-28 11:13:59 +01:00
16 lines
339 B
Nix
16 lines
339 B
Nix
|
# TODO: Ensure that neovim config works without errors on startup
|
||
|
(import ./lib.nix) {
|
||
|
name = "neovim";
|
||
|
|
||
|
nodes.machine = { self, pkgs, ... }: {
|
||
|
imports = with self.nixosModules; [
|
||
|
neovim
|
||
|
];
|
||
|
};
|
||
|
|
||
|
testScript = /* python */ ''
|
||
|
output = machine.succeed("echo 'Hello world'")
|
||
|
assert "Hello world" in output
|
||
|
'';
|
||
|
}
|