Codebase list ohcount / upstream/3.1.1 test / src_dir / nix.nix
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

nix.nix @upstream/3.1.1raw · history · blame

{pkgs,config}:

# one line comment
{
/* mulpiple line comment
   foo = 21;
*/
  bar = "
    #!/bin/sh

    ls -la
    # comment
    echo hello #comment
  ";
	
  baz = ''
    #!/bin/sh

    ls -la
    # comment
    echo hello #comment
  '';
  nixHttp = [ http://nixos.org/ ];
}