Re: [Nix-dev] SVN commit: nix - r31502 - in nixos/trunk/modules: . hardware

2012-02-07 Thread Arie Middelkoop
On 12-01-12 20:57, Eelco Dolstra wrote: > P.S. I suggested to Arie that we should use the Debian firmware packages > in NixOS, since they've done the hard work of gathering all these > firmwares and keeping them up to date. This list is now in: > pkgs/os-specific/linux/firmware/firmware-linux-non

Re: [Nix-dev] SVN commit: nix - r31502 - in nixos/trunk/modules: . hardware

2012-01-16 Thread Arie Middelkoop
Sorry for replying a bit late. The emailadres of my svn account is no longer valid, so I only notice it by going through the email on the list. > Also, I'm used to placing firmware that I want installed into the > > hardware.firmware option, like this: > > > >hardware.firmware = [ pkgs.firmwar

Re: [Nix-dev] SVN commit: nix - r31502 - in nixos/trunk/modules: . hardware

2012-01-12 Thread Eelco Dolstra
Hi, On 01/12/2012 06:40 PM, Peter Simons wrote: > > +hardware.enableFirmwareLinuxFree = pkgs.lib.mkOption { > > + default = false; > > + type = pkgs.lib.types.bool; > > + description = '' > > +Turn on this option if you want the set of firmware of the >

Re: [Nix-dev] SVN commit: nix - r31502 - in nixos/trunk/modules: . hardware

2012-01-12 Thread Peter Simons
Hi Arie, > +hardware.enableFirmwareLinuxFree = pkgs.lib.mkOption { > + default = false; > + type = pkgs.lib.types.bool; > + description = '' > +Turn on this option if you want the set of firmware of the > linux-firmware-free package. > + ''; > +}; most