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

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

nix.nix @debian/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/ ];
}