mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-24 22:58:38 +01:00
17 lines
351 B
Nix
17 lines
351 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; [
|
|
system
|
|
shell
|
|
];
|
|
};
|
|
|
|
testScript = /* python */ ''
|
|
output = machine.succeed("echo 'Hello world'")
|
|
assert "Hello world" in output
|
|
'';
|
|
}
|