Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ config, ... }:
{
config = {
services.foo.enable = true;
services.foo.bar = "baz";
result =
assert config.services.foos == { "" = { bar = "baz"; }; };
true;
};
}