about summary refs log tree commit diff
path: root/nixos/modules
Commit message (Collapse)AuthorAge
* Merge pull request #84074 from Infinisil/fix-literal-option-examplesSilvan Mosberger2020-04-03
|\ | | | | nixos/treewide: Fix incorrectly rendered examples
| * nixos/treewide: Fix incorrectly rendered examplesSilvan Mosberger2020-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many options define their example to be a Nix value without using literalExample. This sometimes gets rendered incorrectly in the manual, causing confusion like in https://github.com/NixOS/nixpkgs/issues/25516 This fixes it by using literalExample for such options. The list of option to fix was determined with this expression: let nixos = import ./nixos { configuration = {}; }; lib = import ./lib; valid = d: { # escapeNixIdentifier from https://github.com/NixOS/nixpkgs/pull/82461 set = lib.all (n: lib.strings.escapeNixIdentifier n == n) (lib.attrNames d) && lib.all (v: valid v) (lib.attrValues d); list = lib.all (v: valid v) d; }.${builtins.typeOf d} or true; optionList = lib.optionAttrSetToDocList nixos.options; in map (opt: { file = lib.elemAt opt.declarations 0; loc = lib.options.showOption opt.loc; }) (lib.filter (opt: if opt ? example then ! valid opt.example else false) optionList) which when evaluated will output all options that use a Nix identifier that would need escaping as an attribute name.
* | nixos/wg-quick: Fix after wireguard got upstreamedBastian Köcher2020-04-03
| |
* | Merge pull request #83258 from mmilata/sympa-6.2.54Silvan Mosberger2020-04-03
|\ \ | | | | | | nixos/sympa: fix outgoing emails, update package version
| * | nixos/sympa: fix outgoing messagingMartin Milata2020-03-24
| | | | | | | | | | | | | | | Because ProtectKernelModules implies NoNewPrivileges, postfix's sendmail executable, which is setgid, wasn't able to send mail.
| * | sympa: build with --enable-fhsMartin Milata2020-03-24
| | | | | | | | | | | | Update module accordingly.
* | | nix-daemon.nix: Add option nix.registryEelco Dolstra2020-04-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows you to specify the system-wide flake registry. One use is to pin 'nixpkgs' to the Nixpkgs version used to build the system: nix.registry.nixpkgs.flake = nixpkgs; where 'nixpkgs' is a flake input. This ensures that commands like $ nix run nixpkgs#hello pull in a minimum of additional store paths. You can also use this to redirect flakes, e.g. nix.registry.nixpkgs.to = { type = "github"; owner = "my-org"; repo = "my-nixpkgs"; };
* | | Merge pull request #84103 from mmilata/moinmoin-b42Silvan Mosberger2020-04-02
|\ \ \ | | | | | | | | nixos/moinmoin: fix maintainer reference
| * | | nixos/moinmoin: fix maintainer referenceMartin Milata2020-04-02
| | | |
* | | | Merge pull request #79828 from Mic92/zedJörg Thalheim2020-04-02
|\ \ \ \ | | | | | | | | | | nixos/zfs: populate PATH with needed programs for zed
| * | | | nixos/zfs: populate PATH with needed programs for zedJörg Thalheim2020-02-11
| | | | |
* | | | | Merge pull request #81298 from Mic92/buildkiteJörg Thalheim2020-04-02
|\ \ \ \ \ | | | | | | | | | | | | nixos/buildkite-agents: don't run as nogroup
| * | | | | nixos/buildkite-agents: don't run as nogroupJörg Thalheim2020-02-28
| | | | | |
* | | | | | nixos/pixiecore: init (#83406)Bruno Bigras2020-04-02
| |_|/ / / |/| | | | | | | | | | | | | | Co-authored-by: raunovv <rauno@oyenetwork.com> Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
* | | | | nixos/borgbackup: fix evaluationJörg Thalheim2020-04-02
| | | | |
* | | | | Merge pull request #83529 from ngiger/83525Jörg Thalheim2020-04-02
|\ \ \ \ \ | | | | | | | | | | | | borgbackup: Improve documentation
| * | | | | borgbackup: Moved documentation to NixOS manual and added examples forNiklaus Giger2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * creating a local backup * creating a borgbackup server * backing up to a borgbackup server * hints about the Vorta graphical desktop application * Added documentation about Vorta desktop client Tested the examples locally and with my borgbase.com account.
* | | | | | Revert "nixos/none: remove"worldofpeace2020-04-02
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #84037 from worldofpeace/remove-none.nixworldofpeace2020-04-01
|\ \ \ \ \ | | | | | | | | | | | | nixos/none: remove
| * | | | | nixos/none: removeworldofpeace2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This windowManager and desktopManager doesn't even have an option to use it. git history suggests to me that there's no way anyone finds this useful anymore.
* | | | | | nixos: add freedesktop/gnome/myself maintainersworldofpeace2020-04-01
| | | | | |
* | | | | | nixos/iio: adjust formatting of option description.Dave Anderson2020-04-01
| | | | | | | | | | | | | | | | | | Co-Authored-By: Alyssa Ross <hi@alyssa.is>
* | | | | | nixos/iio: explain why you might want IIO sensor support.David Anderson2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: David Anderson <dave@natulte.net>
* | | | | | Merge pull request #70762 from xfix/nixos-mullvad-vpnMario Rodas2020-04-01
|\ \ \ \ \ \ | | | | | | | | | | | | | | nixos/mullvad-vpn: add service
| * | | | | | nixos/mullvad-vpn: add serviceKonrad Borowski2019-10-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | mullvad-vpn package is mostly useless without it.
* | | | | | | Merge pull request #83876 from mmahut/magic-wormhole-mailbox-serverMarek Mahut2020-04-01
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | nixos/magic-wormhole-mailbox-server: moving from mail to networking
| * | | | | | | nixos/magic-wormhole-mailbox-server: moving from mail to networkingMarek Mahut2020-03-31
| | | | | | | |
* | | | | | | | Revert "nixos/geoclue2: set location.provider to geoclue2"Jonathan Ringer2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f8a78afd5c65a1919bd92754761e3470cf02194c.
* | | | | | | | Merge pull request #83717 from ↵worldofpeace2020-04-01
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | worldofpeace/drop-pulseaudio-cruft-display-manager nixos/display-managers: don't start pulseaudio
| * | | | | | | | nixos/display-managers: don't start pulseaudioworldofpeace2020-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hey, we have sockets.
* | | | | | | | | Merge pull request #83625 from worldofpeace/ibus-portalworldofpeace2020-04-01
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | | nixos/ibus: add ibus portal if portals are enabled
| * | | | | | | | nixos/ibus: add ibus portal if portals are enabledworldofpeace2020-03-28
| | | | | | | | |
* | | | | | | | | nixos/contractor: delete fileworldofpeace2020-04-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It looks like I forgot to actually delete this file.
* | | | | | | | | nixos/geoclue2: set location.provider to geoclue2worldofpeace2020-04-01
| | | | | | | | |
* | | | | | | | | Merge pull request #82739 from danbst/document-postgresql-upgradeLéo Gaspard2020-03-31
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Document postgresql upgrade
| * | | | | | | | | doc/postgresql: apply xmlformatdanbst2020-03-16
| | | | | | | | | |
| * | | | | | | | | nixos/postgresql: add upgrade documentationdanbst2020-03-16
| | | | | | | | | |
* | | | | | | | | | Merge pull request #83732 from jansol/xowJan Tojnar2020-03-31
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | xow: init at 0.4
| * | | | | | | | | | xow: 0.2 -> 0.4Jan Solanti2020-03-31
| | | | | | | | | | |
| * | | | | | | | | | xow: init at 0.2Philipp Middendorf2020-03-30
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #74379 from bachp/gitlab-runner-reloadFlorian Klink2020-03-31
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | nixos/gitlab-runner: reload on config change
| * | | | | | | | | | | nixos/gitlab-runner: reload on config changeBen Gamari2019-11-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this change it is no longer required to restart the runner on every change. Instead it can just reload it's config while running.
* | | | | | | | | | | | Merge pull request #83704 from Ma27/acme-containerMaximilian Bosch2020-03-31
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | nixos/acme: don't depend on multi-user.target inside a container
| * | | | | | | | | | | | nixos/acme: don't depend on multi-user.target inside a containerMaximilian Bosch2020-03-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On boot, a container doesn't have an uplink and would run into a timeout while waiting for cert renewal[1]. [1] https://github.com/NixOS/nixpkgs/pull/81371#issuecomment-605526099
* | | | | | | | | | | | | Merge pull request #83768 from mmahut/magic-wormhole-mailbox-serverMarek Mahut2020-03-31
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | nixos/magic-wormhole-mailbox-server: init
| * | | | | | | | | | | | nixos/magic-wormhole-mailbox-server: initMarek Mahut2020-03-30
| | |_|/ / / / / / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Merge pull request #77478 from artemist/nixos-factorioDmitry Kalinkin2020-03-30
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | nixos/factorio: add extraSettings and package options
| * | | | | | | | | | | | nixos/factorio: add extraSettings and package optionsArtemis Tosini2020-01-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently there is no way to set game settings, such as administrators. extraSettings allows users to override default game settings without adding many more settings. The package option allows users to use the experimental version, or override to a specific version with their own modified package.
* | | | | | | | | | | | | Merge pull request #81161 from wedens/libvirt-6.0.0Robin Gloster2020-03-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / |/| | | | | | | | | | | | libvirt: 5.4.0 -> 6.1.0
| * | | | | | | | | | | | libvirt: fix escapeShellArg usageRobin Gloster2020-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: conferno <conferno@camfex.cz>