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

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

nix.nix @upstream/latestraw · 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/ ];
}