nixir/tests/integration/imported_module.nix
NotAShelf 8bce6c27b5
tests: initial integration tests
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I09ed2eea568edfaecdb800197bc36c416a6a6964
2026-02-23 02:26:40 +03:00

7 lines
74 B
Nix

# Module to be imported
{
foo = 42;
bar = {
baz = "hello";
};
}