summary refs log tree commit diff
path: root/nixos/modules
Commit message (Collapse)AuthorAge
* Merge staging-next into staginggithub-actions[bot]2021-07-23
|\
| * Merge pull request #131173 from zhaofengli/klipper-cfg-listBernardo Meurer2021-07-23
| |\ | | | | | | nixos/klipper: Allow lists as values for gcode_macro
| | * nixos/klipper: Allow lists as values for gcode_macroZhaofeng Li2021-07-22
| | |
* | | Merge staging-next into staginggithub-actions[bot]2021-07-23
|\| |
| * | Merge pull request #129732 from nivadis/patch-2Maximilian Bosch2021-07-23
| |\ \ | | | | | | | | nextcloud: remove expires header
| | * | nextcloud: remove expires headerValentin Conrad2021-07-09
| | | | | | | | | | | | | | | | nextcloud default nginx config did not include the expires config see: https://docs.nextcloud.com/server/latest/admin_manual/installation/nginx.html
| * | | Merge pull request #129408 from kurnevsky/swap-luks-discardsJörg Thalheim2021-07-23
| |\ \ \ | | | | | | | | | | nixos/swap: allow luks discards if swap discards are enabled
| | * | | nixos/swap: allow luks discards if swap discards are enabledEvgeny Kurnevsky2021-07-06
| | | | |
| * | | | Merge pull request #128032 from Artturin/add-swap-optionsRobert Hensing2021-07-23
| |\ \ \ \ | | |_|_|/ | |/| | | nixos/swap: add options option
| | * | | nixos/swap: add options optionArtturin2021-07-20
| | | | |
* | | | | Merge staging-next into staginggithub-actions[bot]2021-07-23
|\| | | |
| * | | | Merge pull request #131151 from tomfitzhenry/patch-1Samuel Dionne-Riel2021-07-23
| |\ \ \ \ | | | | | | | | | | | | nixos/iio: mention iio-sensor-proxy in option description
| | * | | | nixos/iio: mention iio-sensor-proxy in option descriptionTom2021-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In https://github.com/NixOS/nixpkgs/pull/131094 I mistakenly created a new NixOS module for iio-sensor-proxy because I did not know about `hardware.sensor.iio`. To help people find `hardware.sensor.iio`, include the string "iio-sensor-proxy" in the description. To search for an iio-sensor-proxy module, I tried in vain: * `find -iname '*iio-sensor-proxy*'` * https://search.nixos.org/options?channel=unstable&from=0&size=50&sort=relevance&query=iio-sensor-proxy * This PR will ensure this search query finds `hardware.sensor.iio`
| * | | | | Merge pull request #130503 from flokli/nss-fix-orderingFlorian Klink2021-07-23
| |\ \ \ \ \ | | | | | | | | | | | | | | nixos/systemd: fix NSS database ordering
| | * | | | | nixos/systemd: fix NSS database orderingFlorian Klink2021-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - The order of NSS (host) modules has been brought in line with upstream recommendations: - The `myhostname` module is placed before the `resolve` (optional) and `dns` entries, but after `file` (to allow overriding via `/etc/hosts` / `networking.extraHosts`, and prevent ISPs with catchall-DNS resolvers from hijacking `.localhost` domains) - The `mymachines` module, which provides hostname resolution for local containers (registered with `systemd-machined`) is placed to the front, to make sure its mappings are preferred over other resolvers. - If systemd-networkd is enabled, the `resolve` module is placed before `files` and `myhostname`, as it provides the same logic internally, with caching. - The `mdns(_minimal)` module has been updated to the new priorities. If you use your own NSS host modules, make sure to update your priorities according to these rules: - NSS modules which should be queried before `resolved` DNS resolution should use mkBefore. - NSS modules which should be queried after `resolved`, `files` and `myhostname`, but before `dns` should use the default priority - NSS modules which should come after `dns` should use mkAfter.
* | | | | | | Merge staging-next into staginggithub-actions[bot]2021-07-23
|\| | | | | |
| * | | | | | Merge pull request #129644 from NixOS/home-assistantMartin Weinelt2021-07-23
| |\ \ \ \ \ \
| | * | | | | | nixos/home-assistant: allow serial access for the zwave componentMartin Weinelt2021-07-23
| | | | | | | |
* | | | | | | | Merge staging-next into staginggithub-actions[bot]2021-07-22
|\| | | | | | |
| * | | | | | | Merge pull request #130853 from mweinelt/pppdMartin Weinelt2021-07-22
| |\ \ \ \ \ \ \
| | * | | | | | | nixos/pppd: allow AF_NETLINKMartin Weinelt2021-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The pppd daemon starting with version 2.4.9 uses rtnetlink to configure the ipv6 peer address on the ppp interface. It therefore requires allowing AF_NETLINK sockets.
| | * | | | | | | nixos/pppd: replace CAP_SYS_ADMIN with CAP_BPFMartin Weinelt2021-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The kernel before version 5.7 required CAP_SYS_ADMIN to conduct BPF operations. After that a separate capability CAP_BPF was created, which should be sufficient in this scenario and will further tighten the sandbox around our pppd service. Tested on my personal DSL line.
| * | | | | | | | Merge pull request #128841 from Artturin/udevilSandro2021-07-22
| |\ \ \ \ \ \ \ \ | | |_|/ / / / / / | |/| | | | | | |
| | * | | | | | | nixos/devmon: add systemd serviceArtturin2021-07-08
| | | | | | | | |
| * | | | | | | | Merge pull request #128649 from nrdxp/fix-unstable-nix-zsh-completionsMaximilian Bosch2021-07-22
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | zsh: fix nixUnstable completions
| | * | | | | | | | zsh: include completions for nix-* commandsTimothy DeHerrera2021-07-21
| | | | | | | | | |
| | * | | | | | | | zsh: format module with nixpkgs-fmtTimothy DeHerrera2021-07-21
| | | | | | | | | |
| | * | | | | | | | zsh: remove conflicting nixUnstable completionsTimothy DeHerrera2021-07-21
| | | | | | | | | |
* | | | | | | | | | Merge staging-next into staginggithub-actions[bot]2021-07-22
|\| | | | | | | | |
| * | | | | | | | | Merge pull request #130062 from nh2/plausible-fix-shell-scripting-errorsMaximilian Bosch2021-07-22
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | nixos/plausible: Fix shell scripting errors, runtime fixes
| | * | | | | | | | | nixos/plausible: docs: Mention caveate of `baseUrl`Niklas Hambüchen2021-07-14
| | | | | | | | | | |
| | * | | | | | | | | nixos/plausible: Fix shell scripting errors.Niklas Hambüchen2021-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://github.com/NixOS/nixpkgs/pull/124055/files#r668271575
| * | | | | | | | | | Merge pull request #130945 from mdlayher/mdl-corerad-docsPavol Rusnak2021-07-21
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nixos/corerad: update link to reference configuration file
| | * | | | | | | | | | nixos/corerad: update link to reference configuration fileMatt Layher2021-07-21
| | | |_|_|_|_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
| * | | | | | | | | | Merge pull request #124799 from rissson/nixos-unbound-fix-124780Andreas Rammhold2021-07-21
| |\ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / | |/| | | | | | | | | nixos/unbound: fix define-tag option
| | * | | | | | | | | nixos/unbound: fix define-tag optionMarc 'risson' Schmitt2021-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
* | | | | | | | | | | Merge pull request #127461 from maxeaubrey/NetworkManager-1.32.0Martin Weinelt2021-07-21
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | nixos/nftables: set nm's firewallBackend when onMaxine Aubrey2021-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when enabled, switch networkmanager's firewallBackend option to nftables
| * | | | | | | | | | nixos/networkmanager: add firewallBackend optionMaxine Aubrey2021-07-21
| | | | | | | | | | |
* | | | | | | | | | | nixos/clipcat: add user service moduleGürkan Gür2021-07-20
| |_|_|_|_|/ / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #130291 from DeterminateSystems/buildkite-agent-metricsGraham Christensen2021-07-20
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | buildkite-agent-metrics: init at 5.2.1, nixos/prometheus-buildkite-agent-exporter: init
| * | | | | | | | | | nixos/prometheus-buildkite-agent-exporter: initCole Helbling2021-07-19
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #130538 from Ma27/bump-nixstableDomen Kožar2021-07-20
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nixStable: 2.3.12 -> 2.3.14
| * | | | | | | | | | | nixStable: 2.3.12 -> 2.3.14Maximilian Bosch2021-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: https://github.com/NixOS/nix/compare/2.3.12...2.3.14 Since this is a bugfix release that wasn't pushed to `nixpkgs`, I decided to take care of it. As it's usually done in `upload-release.pl`[1], I updated the fallback-paths accordingly and used eval `1687468`[2] for this with Nix 2.3.14. Also added a fallback-path for `aarch64-darwin` as Nix 2.3.14 seems to support this now[3]. [1] https://github.com/NixOS/nix/blob/2.3-maintenance/maintainers/upload-release.pl [2] https://hydra.nixos.org/eval/1687468 [3] https://github.com/NixOS/nix/commit/14262b86cc5825deae095c14553d623af498124c
* | | | | | | | | | | | Merge pull request #130288 from ju1m/sanoidSandro2021-07-20
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | nixos/sanoid: fix submodule aliases
| * | | | | | | | | | | | nixos/sanoid: fix submodule aliasesJulien Moutinho2021-07-15
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use `mkDefault` into `mkAliasDefitinions`. This avoids conflicting definitions when using `process_children_only`.
* | | | | | | | | | | | nixos/cri-o: Remove unnecessary `lib.` qualifiersembr2021-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We're already using `with lib` here, so we can just say `mkOption`, etc.
* | | | | | | | | | | | nixos/cri-o: Add RFC42 'settings' optionembr2021-07-20
| | | | | | | | | | | |
* | | | | | | | | | | | nixos/agetty: allow overriding the login programPierre Bourdon2021-07-19
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #130616 from zhaofengli/klipper-tweaksBernardo Meurer2021-07-19
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / |/| | | | | | | | | | | nixos/klipper: Tweaks