[Nix-dev] usbnet on NixOS

2013-07-22 Thread Michael Raskin
>anyone has experience using ethernet to usb adapter on nixos? Is it even
>possible?

Yup, with no problem. What you need to know is what module you need.



___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-dev] usbnet on NixOS

2013-07-22 Thread shacka
Hi,

anyone has experience using ethernet to usb adapter on nixos? Is it even
possible?

Thanks,
Andrii
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] msmtp and certificates

2013-07-22 Thread Bjørn Forsman
On 22 July 2013 20:37, Eelco Dolstra  wrote:
> Hi,
>
> On 20/07/13 20:57, Bjørn Forsman wrote:
>
>> Would it be an idea to rename ca-bundle.crt to ca-certificates.crt?
>> One less (needless?) distro difference?
>
> I don't think the certificate locations are very standardized across
> distributions.  AFAIK /etc/ssl/certs/ca-bundle.crt is what Fedora also uses...

You are correct (just checked Fedora 19). Too bad. Thanks.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] msmtp and certificates

2013-07-22 Thread Eelco Dolstra
Hi,

On 20/07/13 20:57, Bjørn Forsman wrote:

> Would it be an idea to rename ca-bundle.crt to ca-certificates.crt?
> One less (needless?) distro difference?

I don't think the certificate locations are very standardized across
distributions.  AFAIK /etc/ssl/certs/ca-bundle.crt is what Fedora also uses...

-- 
Eelco Dolstra | LogicBlox, Inc. | http://nixos.org/~eelco/
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


Re: [Nix-dev] gnome3 attribute not searchable

2013-07-22 Thread Bjørn Forsman
On 22 July 2013 17:11, Moritz Ulrich  wrote:
> Likely a `recurseIntoAttrs' missing.

Yup, that seems correct. Thanks!

I changed

  gnome3 = callPackage ../desktops/gnome-3 {
callPackage = pkgs.newScope pkgs.gnome3;
self = pkgs.gnome3;
  };

into

  gnome3 = recurseIntoAttrs (callPackage ../desktops/gnome-3 {
callPackage = pkgs.newScope pkgs.gnome3;
self = pkgs.gnome3;
  });

And now "nix-env -f. -qaP \* | grep gnome3" yields some results.

Should I commit this change? Does it have any other side effects? Will
it cause hydra to start building gnome3.* attributes?

Best regards,
Bjørn Forsman
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-dev] gnome3 attribute not searchable

2013-07-22 Thread Bjørn Forsman
Hi all,

Why doesn't "nix-env -f. -qaP \* | grep gnome3" inside nixpkgs source
tree display anything? I can see the "gnome3" attribute in
all-packages.nix and I can nix-build -A gnome3., so I know
it's there.

Best regards,
Bjørn Forsman
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev