summaryrefslogtreecommitdiffstats
path: root/nixos
AgeCommit message (Collapse)Author
2021-09-08maintainers: remove bricewgeBrice Waegeneire
So long, and thanks for all the fish!
2021-09-08nixos/grafana: systemd unit hardeningAlexandre Iooss
2021-09-08nixos: nixos/doc/manual/configuration/profiles.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/configuration/networking.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/configuration/file-systems.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/configuration/package-mgmt.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/devlopment/nixos-tests.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/configuration/config-syntax.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/configuration/declarative-packages.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/administration/troubleshooting.xml to CommonMarkBobby Rong
2021-09-08nixos: nixos/doc/manual/administration/containers.xml to CommonMarkBobby Rong
2021-09-07Merge pull request #130047 from NixOS/doc-manpage-roleJan Tojnar
doc: Add support for manpage references
2021-09-07nixos/doc/md-to-db.sh: handle Docbook inclues in CommonMarkRyan Mulligan
You can do includes like this: ```{=docbook} <xi:include href="rl-2111.section.xml" /> ```
2021-09-07Merge pull request #136915 from ncfavier/manualPagesMichele Guerini Rocco
nixos/documentation: expose manualPages as a hidden option
2021-09-07Merge pull request #128916 from heisenberg33/patch-4Robert Hensing
Fix default pager environment
2021-09-07nixos/documentation: expose manualPagesNaïm Favier
Allows advanced users to select what packages they want to generate the man cache for, and even more advanced users to make manualPages content-addressed to avoid needless rebuilds.
2021-09-07nixos: nix.sshServe: add write optionmatthewcroughan
Adds the ability to provide the --write flag in addition to the --serve flag via a new option, services.sshServe.write. A user can now share their system as a remote builder with friends easily as follows: { nix = { sshServe = { enable = true; write = true; keys = ["ssh-dss AAAAB3NzaC1k... alice@example.org"]; }; }; } Co-authored-by: Raphael Megzari <raphael@megzari.com>
2021-09-07nixos/users-groups: Add dry modeJanne Heß
2021-09-07Merge pull request #134070 from malte-v/gnunet-public-tmpdirMichele Guerini Rocco
nixos/gnunet: use public $TMPDIR
2021-09-07Merge pull request #129074 from bobby285271/pr11Jörg Thalheim
nixos/doc: convert Chapter 57, 59, 60, 63 to CommonMark
2021-09-07Merge pull request #129121 from bobby285271/pr13Jörg Thalheim
nixos/doc: convert Chapter 7, 9, 10, 11, 12, 14, 15, 48 to CommonMark
2021-09-07Merge pull request #129154 from bobby285271/pr15Jörg Thalheim
nixos/doc: convert Chapter 1, 3, 4 to CommonMark
2021-09-07Merge pull request #129136 from bobby285271/pr14Jörg Thalheim
nixos/doc: convert "Chapter 58. Writing NixOS Modules" to CommonMark
2021-09-07Merge pull request #128933 from bobby285271/pr5Jörg Thalheim
nixos/doc: convert "8.1. LUKS-Encrypted File Systems" to CommonMark
2021-09-07Merge pull request #129003 from bobby285271/pr10Jörg Thalheim
nixos/doc: convert "2.5. Additional installation notes" to CommonMark
2021-09-07Merge pull request #128937 from bobby285271/pr8Jörg Thalheim
nixos/doc: convert "Chapter 55. Container Management" to CommonMark
2021-09-07Merge pull request #128935 from bobby285271/pr7Jörg Thalheim
nixos/doc: convert "Chapter 56. Troubleshooting" to CommonMark
2021-09-07Merge pull request #128934 from bobby285271/pr6Jörg Thalheim
nixos/doc: convert "6.2. Ad-Hoc Package Management" to CommonMark
2021-09-07Merge pull request #128892 from bobby285271/pr4Jörg Thalheim
nixos/doc: convert "Chapter 13. Networking" to CommonMark
2021-09-07Merge pull request #129083 from bobby285271/pr12Jörg Thalheim
nixos/doc: convert Chapter 49, 50, 51, 52, 53, 54 to CommonMark
2021-09-07mirakurun: build with yarn2nixmidchildan
2021-09-07elasticsearch: auto_import_dangling_indices in single-node modehappysalada
2021-09-07elasticsearch: update configurationhappysalada
- transport.tcp.port -> transport.port https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.1.html - default to start a single-node cluster https://stackoverflow.com/questions/59350069/elasticsearch-start-up-error-the-default-discovery-settings-are-unsuitable-for
2021-09-07Merge pull request #128885 from bobby285271/pr3Jörg Thalheim
nixos/doc: convert "Chapter 5. Configuration Syntax" to CommonMark
2021-09-07Merge pull request #128878 from bobby285271/pr2Jörg Thalheim
nixos/doc: convert "6.1. Declarative Package Management" to CommonMark
2021-09-07Merge pull request #128760 from bobby285271/masterJörg Thalheim
nixos/doc: convert "Chapter 45. Profiles" to CommonMark
2021-09-06modules/programs/command-not-found: Fix ShellCheck warningsAnders Kaseorg
https://github.com/koalaman/shellcheck/wiki/SC2086 Double quote to prevent globbing and word splitting. https://github.com/koalaman/shellcheck/wiki/SC2166 Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well defined. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2021-09-06modules/programs/bash: Fix ShellCheck warningsAnders Kaseorg
https://github.com/koalaman/shellcheck/wiki/SC2086 Double quote to prevent globbing and word splitting. https://github.com/koalaman/shellcheck/wiki/SC2166 Prefer `[ p ] && [ q ]` as `[ p -a q ]` is not well defined. https://github.com/koalaman/shellcheck/wiki/SC2219 Instead of `let expr`, prefer `(( expr ))` . Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2021-09-04Merge pull request #136505 from bew/update-rofi-1.7.0Maximilian Bosch
rofi: 1.6.1 -> 1.7.0
2021-09-04Merge pull request #136334 from c0deaddict/masterRobert Scott
release-notes: add nats service
2021-09-03nixos/users-groups: don't default users.users.<name>.group to nogroupGuillaume Girol
this is unsafe, as many distinct services may be running as the same nogroup group.
2021-09-03Merge pull request #136534 from kevincox/synapse-server-nameTimothy DeHerrera
nixos.matrix-synapse: Clarify documentation of server_name.
2021-09-03nixos/switch-to-configuration: Add dry activation scriptsJanne Heß
2021-09-03kexec-tools: rename from kexectools to match the project nameGraham Christensen
2021-09-03Merge pull request #136475 from Artturin/pipewirejackldpathArtturi
nixos/pipewire: use absolute path for jack libs
2021-09-03release-notes: add nats serviceJos van Bakel
2021-09-02nixos.matrix-synapse: Clarify documentation of server_name.Kevin Cox
Matrix homeservers have two important domains. The user-visible server_name and the homeserver domain which serves most of the traffic but is really seen by users. The docs around this variable said "This is used by remote servers to connect to this server" which is very confusing because most of the remote server traffic actually goes the server domain, not the server_name domain. (The server_name domain is only used to fetch the .well-known file that points at the server domain). I largely copied the wording from https://matrix-org.github.io/synapse/latest/usage/configuration/homeserver_sample_config.html as I found it much more clear.
2021-09-02rofi: 1.6.1 -> 1.7.0Benoit de Chezelles
And add myself as a maintainer
2021-09-02Merge pull request #135182 from lovesegfault/nixos-distccBernardo Meurer
nixos/distccd: init
2021-09-02nixos/pipewire: use absolute path for jack libsArtturin