mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
41ce56718b
Removes the redundant `self`.
19 lines
407 B
Nix
19 lines
407 B
Nix
# TODO: Ensure that neovim config works without errors on startup
|
|
let
|
|
inherit (builtins) attrValues;
|
|
in
|
|
(import ./lib.nix) {
|
|
name = "neovim";
|
|
|
|
nodes.machine = { nix-config, ... }: {
|
|
imports = attrValues {
|
|
inherit (nix-config.nixosModules) system shell;
|
|
};
|
|
};
|
|
|
|
testScript = /* python */ ''
|
|
output = machine.succeed("echo 'Hello world'")
|
|
assert "Hello world" in output
|
|
'';
|
|
}
|