summary refs log tree commit diff
path: root/nixos/modules/services/audio/alsa.nix
Commit message (Collapse)AuthorAge
* nixos: alsa: better docstringJan Malakhovski2018-04-27
|
* nixos/alsa: Do not make sound.enable conditional on stateVersion.Aristid Breitkreuz2018-02-23
| | | | | | | | | | | | | | | | | | | | Eelco Dolstra wrote: Hm, this is not really the intended use of stateVersion. From the description: Every once in a while, a new NixOS release may change configuration defaults in a way incompatible with stateful data. For instance, if the default version of PostgreSQL changes, the new version will probably be unable to read your existing databases. To prevent such breakage, you can set the value of this option to the NixOS release with which you want to be compatible. The effect is that NixOS will option defaults corresponding to the specified release (such as using an older version of PostgreSQL). So this is only intended for options that have some corresponding on-disk state. AFAICT this is not the case for sound. In any case stateVersion is a necessary evil that only exists because we can't just upgrade Postgres databases or change SSH host keys. It's not necessary for things like whether sound is enabled. (If the user discovers that sound is suddenly disabled, they can just enable it.) I had some vague recollection that we also had a configVersion option setting to control the defaults for non-state-related options, but I can't find it so maybe it was only discussed.
* nixos: disable sound by default, if stateVersion >= 18.03 (#35355)Aristid Breitkreuz2018-02-22
|
* pulseaudio: Resolve conflicting asound.conf of pulseaudio and alsaBalletie2017-07-01
| | | | Fixes issue #25790.
* rename sound.enableMediaKeys to sound.mediaKeys.enable and add volumeStepRobin Stumm2017-01-01
|
* nixos: add actkbd module and sound.enableMediaKeys optionJan Malakhovski2015-04-20
|
* nixos/modules/services/audio/alsa.nix: fix evaluationPeter Simons2014-05-23
| | | | https://github.com/NixOS/nixpkgs/issues/2732
* fix mistakeArseniy Seroka2014-05-23
|
* alsa: add option to change system wide configurationArseniy Seroka2014-05-23
|
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-14
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* Disable various services when running inside a containerEelco Dolstra2013-11-26
|
* Remove uses of the "merge" option attributeEelco Dolstra2013-10-28
| | | | | It's redundant because you can (and should) specify an option type, or an apply function.
* Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra2013-10-10