Michael Schneider
fd4ebd8990
add opt out flag for type checking
2022-06-03 13:37:04 +02:00
Luna Nova
9e95ee79d4
manual: Fix 22.11 Other Notable Changes bullet point style
...
Every other release uses "-" instead of "*", which results in
spacing=compact being added to the xml unexpectedly.
2022-06-02 20:58:54 -07:00
Nick Cao
e84828b973
nixos/nvidia: add option hardware.nvidia.open for selecting the opensource kernel driver
2022-06-03 10:50:33 +08:00
github-actions[bot]
1a2bb9918a
Merge master into haskell-updates
2022-06-03 00:11:59 +00:00
Sandro
b450c76786
Merge pull request #175607 from robintown/matrix-synapse
...
matrix-synapse: 1.59.1 -> 1.60.0
2022-06-02 20:32:04 +02:00
Lassulus
8cea5e2fa1
Merge pull request #173664 from Izorkin/peertube-redis-server
...
nixos/peertube: use redis.servers
2022-06-02 20:26:29 +02:00
github-actions[bot]
68b515131f
Merge master into haskell-updates
2022-06-01 00:15:07 +00:00
Robin Townsend
d0eda68f5b
matrix-synapse: Warn about state_group_edges changes in release notes
2022-05-31 13:54:58 -04:00
Markus S. Wamser
32e26d2627
release-notes: fix typo
2022-05-31 08:53:58 +02:00
github-actions[bot]
5250c9bcbc
Merge master into haskell-updates
2022-05-31 00:12:58 +00:00
Janne Heß
cbaacfb8df
Release 22.05
2022-05-30 20:50:07 +02:00
github-actions[bot]
b39ef64425
Merge master into haskell-updates
2022-05-30 00:15:31 +00:00
Janne Heß
d732671af2
Merge pull request #175138 from Mic92/docs
...
release-notes: link to all nix versions
2022-05-29 21:30:47 +02:00
ajs124
757046a257
Merge pull request #175095 from mweinelt/slapd-argon2-changelog
...
nixos/doc/rl-2205: add slapd argon2 module rename hint
2022-05-29 20:49:21 +02:00
sternenseemann
4cec59e09c
Merge pull request #175170 from sternenseemann/ghc-9.2.3
...
haskell.compiler: ghc922 -> ghc923
2022-05-29 20:00:57 +02:00
tljuniper
2a750c3026
nixos/manual: Add docs on extra python packages in tests
2022-05-29 11:22:50 +02:00
sternenseemann
90099ac5fa
haskell.compiler: ghc922 -> ghc923
...
https://www.haskell.org/ghc/download_ghc_9_2_3.html
Since the tarball is generated by Hadrian, neither autoreconf nor ./boot
is executed so ./configure and ghc.mk is missing.
2022-05-28 21:11:07 +02:00
Jörg Thalheim
b8f31e9e3b
release-notes: link to all nix versions
2022-05-28 16:42:48 +02:00
Martin Weinelt
173fdcb251
nixos/doc/rl-2205: add slapd argon2 module rename hint
2022-05-28 11:35:21 +02:00
Zhaofeng Li
6c4bfe583c
nixos/infnoise: init
2022-05-27 15:18:43 -07:00
Hubert Jasudowicz
91015fe196
nixos/saleae-logic: init
2022-05-27 20:39:32 +02:00
Maximilian Bosch
d2a75266ef
Merge pull request #174906 from symphorien/matrix-secret-file
...
release-notes: don't encourage people to copy secrets to the store
2022-05-27 19:33:59 +02:00
pennae
f16c8e58ca
Merge pull request #167037 from schuelermine/patch-doc-submodule-default
...
nixos/doc/types: note submodules’ default’s behaviour
2022-05-27 13:21:48 +00:00
Guillaume Girol
2fdd23c154
release-notes: don't encourage people to copy secrets to the store
2022-05-27 12:00:00 +00:00
Manuel Bärenz
3b6fb49f3d
scribus: Rename scribus{,Unstable} -> scribus{_1_4,}
2022-05-26 21:10:04 +02:00
Jonas Heinrich
f81c763c1d
nixos/appvm: init at unstable-2021-12-20
...
Co-authored-by: Mikhail Klementev <blame@dumpstack.io>
Co-authored-by: Cabia Rangris <me@cab404.ru>
2022-05-26 08:33:49 -04:00
sternenseemann
8b5e372c97
Merge pull request #168113 from a-m-joseph/ispowerpc-becomes-ispower32
...
lib/systems/inspect.nix: replace isPowerPC with isPower32BigEndian
2022-05-26 11:44:39 +02:00
Jörg Thalheim
8d9afe3d3b
doc: rework notable changes
2022-05-25 23:26:44 +02:00
Jörg Thalheim
9cbb75f315
doc: fix docker/maddy in changelog
2022-05-25 21:56:28 +02:00
Jörg Thalheim
5936d939ce
doc: sort service list
2022-05-25 21:47:34 +02:00
Jörg Thalheim
9ae4a910e4
nixos/timetagger: drop non-evaluating service files
...
The file was not included in the module list and also does not evaluate.
2022-05-25 21:24:48 +02:00
Jörg Thalheim
78f5129aa6
doc: add missing new services to release-notes
2022-05-25 21:24:47 +02:00
Sandro
7fa8d8b2e2
Merge pull request #153481 from Tchekda/submit/bird-lg
2022-05-25 18:20:58 +02:00
Adam Joseph
c0085404bd
lib/systems/inspect.nix: remove isPowerPC
...
Very confusingly, the `isPowerPC` predicate in
`lib/systems/inspect.nix` does *not* match `powerpc64le`!
This is because `isPowerPC` is defined as
isPowerPC = { cpu = cpuTypes.powerpc; };
Where `cpuTypes.powerpc` is:
{ bits = 32; significantByte = bigEndian; family = "power"; };
This means that the `isPowerPC` predicate actually only matches the
subset of machines marketed under this name which happen to be 32-bit
and running in big-endian mode which is equivalent to:
with stdenv.hostPlatform; isPower && isBigEndian && is32bit
This seems like a sharp edge that people could easily cut themselves
on. In fact, that has already happened: in
`linux/kernel/common-config.nix` there is a test which will always
fail:
(stdenv.hostPlatform.isPowerPC && stdenv.hostPlatform.is64bit)
A more subtle case of the strict isPowerPC being used instead of the
moreg general isPower accidentally are the GHC expressions:
Update pkgs/development/compilers/ghc/8.10.7.nix
Update pkgs/development/compilers/ghc/8.8.4.nix
Update pkgs/development/compilers/ghc/9.2.2.nix
Update pkgs/development/compilers/ghc/9.0.2.nix
Update pkgs/development/compilers/ghc/head.nix
Since the remaining legitimate use sites of isPowerPC are so few, remove
the isPowerPC predicate completely. The alternative expression above is
noted in the release notes as an alternative.
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
2022-05-25 09:45:42 +02:00
Elis Hirwing
868e519238
php: Upgrade from PHP 8.0 to 8.1 as default PHP
2022-05-24 19:24:49 +02:00
Eric Bailey
3798f3c168
kops: 1.23.1 -> 1.23.2 ( #174165 )
...
Also update 22.05 release notes, which still mentioned 1.22.4 as the default.
2022-05-24 13:57:45 +02:00
sternenseemann
1f8bae43e4
nixos/doc/rl-2211.section.md: changes w.r.t. cross check execution
2022-05-23 21:25:04 +02:00
Janne Heß
953b5d19bc
manual: Fix the 22.11 changelog
2022-05-23 21:13:37 +02:00
Janne Heß
bfdfe12c78
22.11 is Raccoon
2022-05-23 20:08:07 +02:00
Janne Heß
3673f148b3
Merge remote-tracking branch 'origin/staging-next'
...
* origin/staging-next: (62 commits)
Re-Revert "lua: fix on darwin by using makeBinaryWrapper (#172749 )"
openldap: fix cross-compilation
makeBinaryWrapper: fix codesign on aarch64-darwin
python3Packages.ldap: fix linking with openldap 2.5+
Revert "lua: fix on darwin by using makeBinaryWrapper (#172749 )"
wine: enable parallel build again
pkgsi686Linux.gdb: fix formatting for 32-bit systems
gtk4: Fix incorrect merge
nixos/openldap: use upstream unit defaults
openldap: update maintainers
openldap: 2.4.58 -> 2.6.2
Revert "Add mingwW64-llvm cross-system."
lua: fix on darwin by using makeBinaryWrapper (#172749 )
python310Packages.python-mimeparse: execute tests
pandas: fix darwin build
gtk3: 3.24.33 -> 3.24.33-2022-03-11
gtk4: patch fixing g-c-c crashes
e2fsprogs: patch for CVE-2022-1304
firefox-unwrapped: fix cross compilation
rustc: expose correct llvmPackages for cross compile
...
2022-05-23 19:56:59 +02:00
Janne Heß
c1c368194e
release-notes: Fix the first lines for 22.05
...
They had the wrong order
2022-05-23 19:19:13 +02:00
sternenseemann
168b926435
lib.systems: remove supported, replace with flakeExposed
...
Since the list only gates the platforms the nixpkgs flake exposes
packages to build on, the `hydra` label made little sense. It was also
only used for this purpose, so the `tier*` attributes were largely
unnecessary.
To reflect the intention more accurately, we expose
`lib.systems.flakeExposed` and use it to gate flake.nix's system list.
2022-05-23 15:27:30 +02:00
github-actions[bot]
107b6041bc
Merge master into staging-next
2022-05-22 18:01:20 +00:00
Martin Weinelt
05232d19b6
Merge pull request #163220 from fleaz/init-r53_ddns
2022-05-22 17:08:55 +02:00
github-actions[bot]
084f3d75e7
Merge master into staging-next
2022-05-21 18:01:06 +00:00
Maximilian Bosch
33c44a1031
nextcloud22: drop
...
Version 22 will be EOLed in July 2022[1] and we shouldn't have
unsupported software in the soon-to-be-released NixOS 22.05, hence
dropping it already.
[1] https://github.com/nextcloud/server/wiki/Maintenance-and-Release-Schedule
2022-05-21 18:34:28 +02:00
David Tchekachev
0f63bd3ba8
nixos/bird-lg: init
2022-05-20 15:44:00 +03:00
Izorkin
0b1340f57b
nixos/peertube: use redis.servers
2022-05-19 23:52:50 +03:00
github-actions[bot]
b833efbcd7
Merge master into staging-next
2022-05-19 18:06:51 +00:00
Dominik Xaver Hörl
065085b340
rl-2205: mention changes to the xmonad haskell module
2022-05-19 18:11:39 +02:00
Lassulus
e7f5c53e02
Merge pull request #173439 from mweinelt/openldap
...
openldap: 2.4.58 -> 2.6.2
2022-05-18 19:01:11 +02:00
Martin Weinelt
39ef6322b5
openldap: 2.4.58 -> 2.6.2
...
https://git.openldap.org/openldap/openldap/-/blob/OPENLDAP_REL_ENG_2_5/ANNOUNCEMENT
https://git.openldap.org/openldap/openldap/-/blob/OPENLDAP_REL_ENG_2_6/ANNOUNCEMENT
Co-Authored-By: Andreas Schrägle <nix@ajs124.de>
2022-05-18 15:25:52 +02:00
Shea Levy
7456be85db
Merge branch 'staging-next' into staging
2022-05-18 06:40:21 -04:00
Aidan Gauland
59244e07f0
nixos/nextcloud: Add option for max-age HSTS directive
...
* Add an option services.nextcloud.nginx.hstsMaxAge for setting the max-age
directive of the Strict-Transport-Security HTTP header.
* Make the Strict-Transport-Security HTTP header in the Nginx virtualhost block
dependant upon the option services.nextcloud.https instead of
services.nextcloud.nginx.recommendedHttpHeaders, as this header makes no sense
when not using HTTPS. (Closes #169465 )
2022-05-14 09:04:45 +12:00
github-actions[bot]
fe71877bbd
Merge staging-next into staging
2022-05-13 18:03:04 +00:00
Martin Weinelt
3607d087ec
Merge pull request #112682 from hax404/upterm
2022-05-13 18:24:54 +02:00
Georg Haas
18ffb9690c
nixos/uptermd: init
2022-05-13 17:44:44 +02:00
Sandro
c1b015df49
Merge pull request #172261 from jbedo/mercury
2022-05-13 17:30:11 +02:00
Jelle Besseling
0f69a517a4
nixos/mastodon: use redis.servers
2022-05-13 15:39:44 +02:00
Mario Rodas
9457a82e42
Merge pull request #171459 from ivan/postgresql-is-14
...
nixos/postgresql: use postgres 14 for 22.05
2022-05-13 06:44:25 -05:00
Justin Bedo
0d41bc81d6
mercury: 20.06.1 -> 22.01.1
2022-05-13 08:48:16 +10:00
Sandro
d89d7af1ba
Merge pull request #171165 from justinas/teleport-9
...
teleport: 8.1.3 -> 9.1.2, add rdpclient
2022-05-12 20:08:26 +02:00
Thomas Gerbet
3c90c28124
phpPackages.box: 2.7.5 -> 3.16.0
...
The source has been moved to the new upstream since Box2 is abandonned.
2022-05-12 11:42:27 +02:00
D Anzorge
271905a33f
minetest: add aliases and release notes for v4 deprecation
2022-05-10 19:26:25 +02:00
Lara
8f54cca448
nixos/doc: Add Snipe-IT to 22.05 release notes
2022-05-10 16:57:21 +02:00
Justinas Stankevicius
25cf5ebcd0
teleport: 8.1.3 -> 9.1.2
2022-05-09 23:35:46 +03:00
Robert Hensing
ebf0465d09
Merge remote-tracking branch 'upstream/master' into testers
2022-05-09 14:27:13 +02:00
Robert Hensing
ae172a2bb4
treewide: nixosTest -> testers.nixosTest
2022-05-09 14:16:06 +02:00
Maximilian Bosch
f0bb39d4b7
Merge pull request #167327 from lheckemann/networkd-usedhcp
...
nixos/networkd: reimplement useDHCP in a sensible way
2022-05-07 00:05:44 +02:00
Ivan Kozik
59a76614f3
treewide: chown user:group instead of user.group to fix warnings from coreutils 9.1
2022-05-05 22:05:18 +00:00
Kerstin Humm
881a8cbe80
nixos/kanidm: fix release notes
2022-05-05 19:18:41 +02:00
Kerstin Humm
c126babb28
nixos/kanidm: init
...
Co-Authored-By: Martin Weinelt <mweinelt@users.noreply.github.com>
Co-Authored-By: Flakebi <flakebi@t-online.de>
2022-05-05 19:06:13 +02:00
Artturi
f0e48dd98b
Merge pull request #119942 from hercules-ci/mkDerivation-overridable-recursive-attributes
2022-05-04 14:31:50 +03:00
Pascal Bach
bf905c190c
Merge pull request #171390 from DarkKirb/matrix-1.58
...
matrix-synapse: 1.57.0 -> 1.58.0
2022-05-04 09:22:45 +02:00
Ivan Kozik
96a8c0ac23
nixos/postgresql: use postgres 14 for 22.05
...
postgresql: alias to postgresql_14
2022-05-03 22:23:08 +00:00
fleaz
8b250ec5af
nixos/r53-ddns: init
2022-05-04 00:16:18 +02:00
davidak
01143883ff
Merge pull request #161788 from vlinkz/calamares-nixos
...
calamares: fix calamares modules, add nixos modules, and add new iso
2022-05-03 22:55:24 +02:00
Victor Fuentes
bcb4456920
nixos/release-notes: add calamares installer to highlights
2022-05-03 12:19:21 -04:00
Charlotte 🦝 Delenk
7f1ddd2da5
matrix-synapse: 1.57.0 -> 1.58.0
...
Closes #169534
2022-05-03 12:57:24 +01:00
adisbladis
46241e156c
nixos/virtualisation.oci-containers: Use podman as the default backend
...
This has a number of benefits such as that applying service limits will
actually work since there isn't a layer of indirection (the Docker daemon)
between the systemd service and the container runtime.
2022-05-03 14:50:43 +12:00
adisbladis
dda33d2b2b
nixos/doc/manual: Remove trailing white space from 22.05 release notes
...
This was an annoyance for me as I have editor hooks cleaning up
trailing white space which lead to regenerating parts of the release notes unnecessarily.
2022-05-03 14:45:54 +12:00
Robert Hensing
e4054fe0a9
Merge pull request #169310 from Xiami2012/zookeeper-jre
...
nixos/zookeeper: Take the same JRE we build zookeeper with by default
2022-05-02 10:51:42 +02:00
Robert Hensing
0e00acafe9
stdenv.mkDerivation: public -> finalPackage
2022-05-02 08:49:33 +02:00
Robert Hensing
2e0bd52762
rl-2205: Add entry for overlay-style mkDerivation overriding
2022-05-02 08:49:32 +02:00
Vladimír Čunát
c480cc2895
Merge branch 'master' into staging-next-2022-04-23
2022-04-30 23:02:28 +02:00
Maximilian Bosch
cff16bc625
nixos/doc: add release-note entry for networking.useDHCP change
2022-04-30 00:30:45 +02:00
Will Fancher
2e96b64e02
Merge pull request #170123 from ElvishJerricco/systemd-shutdown-ramfs-fixup
...
Systemd shutdown ramfs fixup
2022-04-28 20:17:23 -04:00
Will Fancher
69d8047516
nixos: Fix up systemd shutdown ramfs
2022-04-28 14:12:14 -04:00
Vladimír Čunát
51554cbbdb
Merge branch 'master' into staging-next-2022-04-23
2022-04-27 22:50:17 +02:00
adisbladis
01e35db278
release-notes: Add release note about nixos containers directory moves
2022-04-27 18:35:18 +12:00
adisbladis
f535d6f45e
nixos-container: Use new configuration & state directories
...
We need to move NixOS containers somewhere else so these don't clash
with Podman, Skopeo & other container software in the libpod &
cri-o/cri-u/libcontainer ecosystems.
The state directory move is not strictly a requirement but is good for
consistency.
2022-04-27 18:35:08 +12:00
Xiami
3e5e584c1f
nixos/zookeeper: Update doc with suggested description
2022-04-26 18:32:32 +08:00
github-actions[bot]
b9e4b22843
Merge master into staging-next
2022-04-24 12:01:14 +00:00
Jacek Galowicz
2656cb99bd
Merge pull request #167838 from tljuniper/test-driver-pipefail-fix
...
nixos/test-driver: shellopts with execute + timeout
2022-04-24 11:50:13 +02:00
Vladimír Čunát
82ec893b68
Merge branch 'staging' into staging-next
2022-04-23 18:10:57 +02:00
Jonas Heinrich
24b53785cc
nixos/create_ap: add module
2022-04-23 07:17:44 -04:00
github-actions[bot]
cbc56d5cc3
Merge staging-next into staging
2022-04-21 18:02:06 +00:00
Pascal Bach
d9309f43b3
Merge pull request #155424 from tobim/nixos/snapserver-firewall
...
nixos/snapserver: don't open ports by default
2022-04-21 19:40:20 +02:00
Sandro
7a89f668fa
Merge pull request #168012 from schmittlauch/pulseaudio-advanced-bluetooth-codecs
2022-04-21 13:12:46 +02:00
tljuniper
ed945aeb6e
nixos/manual: Clarify execute exit status
...
Co-authored-by: Robert Hensing <roberth@users.noreply.github.com>
2022-04-21 10:54:00 +02:00