Codebase list ohcount / fresh-snapshots/upstream test / src_dir / nix.nix
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

nix.nix @fresh-snapshots/upstreamraw · 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/ ];
}