summary refs log tree commit diff
path: root/nixos/modules/services/networking/supplicant.nix
Commit message (Collapse)AuthorAge
* lib.replaceChars: warn about being a deprecated aliasArtturin2022-12-15
| | | | | | | | replaceStrings has been in nix since 2015(nix 1.10) so it is safe to remove the fallback https://github.com/nixos/nix/commit/d6d5885c1567454754a0d260521bafa0bd5e7fdb
* treewide: automatically md-convert option descriptionspennae2022-07-30
| | | | | | | | | | | | | | | | | | | | | | the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
* treewide: pkgs.systemd -> config.systemd.packageJanne Heß2022-05-05
| | | | | This ensures there is only one systemd package when e.g. testing the next systemd version.
* wpa_supplicant: prevent writing non-writable configurationRémy Grünblatt2021-11-16
|
* nixos/doc: clean up defaults and examplesNaïm Favier2021-10-04
|
* nixos/wpa_supplicant: prefer 'install' over 'touch/chmod/mkdir/chgrp'Bjørn Forsman2021-05-01
| | | | Ref #121293.
* nixos/modules: remove trailing whitespaceJörg Thalheim2020-08-07
| | | | | This leads to ci failure otherwise if the file gets changed. git-blame can ignore whitespace changes.
* nixos/supplicant: Don't *stop* supplicant on machine resume. Fixes #51582Darius Jahandarie2020-03-20
|
* nixos/supplicant: /var/run -> /runBob van der Linden2019-03-24
|
* supplicant: Fix tiny typo in the documentationIngo Blechschmidt2018-07-04
|
* nixos/wpa_supplicant: use literalExampleBjørn Forsman2017-09-15
| | | | | | | | | For various reasons, big Nix attrsets look ugly in the generated manual page[1]. Use literalExample to fix it. [1] Quotes around attribute names are lost, newlines inside multi-line strings are shown as '\n' and attrs written on multiple lines are joined into one.
* supplicant nixos module: Allow not specifying the configFile pathShea Levy2017-02-05
|
* supplicant: fix wants and wantedByAlexander Ried2016-10-20
|
* Merge pull request #18511 from ericsagnes/feat/remove-optionSetJoachim F2016-10-01
|\ | | | | modules: optionSet -> submodule
| * supplicant module: optionSet -> submoduleEric Sagnes2016-09-13
| |
* | supplicant: Make the device pull in the supplicant service.Shea Levy2016-09-30
|/ | | | | | The udev rule should do this. Not sure why it doesn't. Fixes #19029.
* Add missing 'type', 'defaultText' and 'literalExample' in module definitionsThomas Strobel2016-01-17
| | | | | | - add missing types in module definitions - add missing 'defaultText' in module definitions - wrap example with 'literalExample' where necessary in module definitions
* supplicant module: extended module for wpa_supplicantThomas Strobel2015-10-06
Add new configuration options for wpa_supplicant and allow to configure and start one wpa_supplicant per device.