about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/parse-okay-mixed-nested-attrs-3.nix
blob: 45a33e4803733b3b9455253c982b2d9c96e52487 (plain) (blame)
1
2
3
4
5
6
7
{
    services.ssh.enable = true;
    services.ssh = { port = 123; };
    services = {
        httpd.enable = true;
    };
}