Gabriel Arazas
a73ae4bf9f
nixos/guix: add Guix home support
2023-12-14 17:41:22 +08:00
tv
4fc44b7ddf
nixos/qmk: ensure plugdev groups exists
...
QMK's udev rules are setting hidraw devices's group to plugdev.
2023-12-14 10:01:19 +01:00
Alyssa Ross
59dc10b5a6
nixos/users-groups: fix confusing error message
...
If we include users with unset groups, we get this very confusing
message, with invalid Nix code:
- The following users have a primary group that is undefined: qyliss
Hint: Add this to your NixOS configuration:
users.groups. = {};
We don't need to include such users in this check, since they'll be
caught anyway by this one:
- users.users.qyliss.group is unset. This used to default to
nogroup, but this is unsafe. For example you can create a group
for this user with:
users.users.qyliss.group = "qyliss";
users.groups.qyliss = {};
2023-12-14 02:08:16 +01:00
Robert Schütz
f6ea3f91b5
nextcloud28: init at 28.0.0
2023-12-13 15:57:33 -08:00
Nick Cao
ee4176d325
nixos/matrix-synapse: update broken link to redis related docs
2023-12-13 18:02:47 -05:00
Nick Cao
3d7e5f4f26
nixos/matrix-synapse: replace references to matrix-org/synapse with element-hq/synapse
2023-12-13 17:50:37 -05:00
Janik
27bcbd780f
Merge pull request #273834 from ajs124/restic-wrappers-append-path
...
nixos/restic: append PATH in wrappers instead of overwriting
2023-12-13 23:15:50 +01:00
Robert Hensing
bef10a5ace
Merge pull request #269551 from tejing1/nixos-stub-ld
...
nixos/stub-ld: init module
2023-12-13 22:36:30 +01:00
Janne Heß
6ad3977ec9
Merge pull request #253184 from tilpner/prometheus-headers
...
nixos/prometheus: add remote{Read, Write}.headers options
2023-12-13 21:53:52 +01:00
Mihai Fufezan
79ddf33f84
nixos/hyprland: remove enableNvidiaPatches option
...
Hyprland now works on Nvidia without patching.
2023-12-13 21:16:16 +01:00
Weijia Wang
09beff8fb5
Merge pull request #273698 from foo-dogsquared/fix-guix-gc-service
...
nixos/guix: fix GC service
2023-12-13 17:43:44 +01:00
Philip Taron
36ac922271
nixos/jigasi: update to use literalExpression
...
I saw this trace when building my system configuration this morning:
```
lazy-options.json> trace: warning: literalExample is deprecated, use literalExpression instead, or use literalMD for a non-Nix description.
```
This warning was introduced in https://github.com/NixOS/nixpkgs/pull/237557 .
The option this commit changes was introduced in https://github.com/NixOS/nixpkgs/pull/137003 .
2023-12-13 08:20:59 -08:00
ajs124
be0a6b0dd6
nixos/restic: append PATH in wrappers instead of overwriting
...
fixes "mount"
2023-12-13 16:24:50 +01:00
Nick Cao
6f78967190
Merge pull request #273951 from schnusch/nixos/tinyproxy
...
nixos/tinyproxy: fix services.tinyproxy.package
2023-12-13 09:41:21 -05:00
Nick Cao
223b0a4fd7
Merge pull request #273878 from numinit/nebula-startup-race
...
nixos/nebula: wait for start notification to prevent startup race
2023-12-13 09:16:30 -05:00
Florian Klink
ec836d5ff3
Merge pull request #272679 from flokli/jenkins-statedir
...
nixos/jenkins: set StateDirectory if home is /var/lib/jenkins
2023-12-13 15:16:13 +02:00
Florian Klink
70808d0217
nixos/jenkins: set StateDirectory if home is /var/lib/jenkins
...
This will cause systemd to chown /var/lib/jenkins to the user that
the jenkins systemd service runs as, fixing permission issues when
mounting /var/lib/jenkins from another data volume.
It uses the same logic that garage is using, too, checking for the
prefix.
2023-12-13 15:15:50 +02:00
schnusch
1cf853b9de
nixos/tinyproxy: fix services.tinyproxy.package
2023-12-13 11:50:27 +01:00
SaltyKitkat
679a417a7a
Declare removed option with mkRemovedOptionModule
2023-12-13 16:43:34 +08:00
SaltyKitkat
b2d6b30648
update oomd.nix
...
due to 7665e1796f
and 806c95e1c7
2023-12-13 16:35:39 +08:00
Morgan Jones
5fd6ebdbef
nixos/nebula: wait for start notification to prevent startup race
2023-12-12 19:25:38 -08:00
Kira Bruneau
8ee593f8d9
Merge pull request #273693 from lopsided98/syncthing-database-dir
...
nixos/syncthing: add `databaseDir` option
2023-12-12 20:55:34 -05:00
nicoo
fb85785231
nixos/kubernetes: certmgr-selfsigned
is now an alias
2023-12-12 21:17:24 +00:00
Bobby Rong
af99a04cd4
Merge pull request #273584 from bobby285271/upd/flatpak
...
flatpak: 1.14.4 → 1.14.5
2023-12-12 23:49:01 +08:00
Lin Yinfeng
b21e84ea8d
nixos/iproute2: use rt_tables.d to avoid IFD
2023-12-12 23:31:25 +08:00
Ryan Lahfa
3bb93fb2cd
Merge pull request #271506 from Misterio77/nginx-redirect-status-code
2023-12-12 14:05:33 +01:00
Gabriel Arazas
5fb40a5816
nixos/guix: remove Service.MemoryDenyWriteExecute for GC service
...
Guile 3 uses JIT needing write and execute permissions.
2023-12-12 10:19:37 +08:00
Ben Wolsieffer
a514d8c148
systemd-stage-1: allow non-existent /lib/firmware
...
Since 1557027
, makeModulesClosure doesn't create a lib/firmware
directory if there is no firmware in the initramfs. If this happens,
systemd-stage-1 fails to build.
/lib only contains /lib/modules and /lib/firmware, both of while are
from modulesClosure. Therefore, we can just add the entirety of
${modulesClosure}/lib to the initramfs to allow for the possibility that
lib/firmware doesn't exist. This also brings systemd-stage-1 in line
with the traditional stage-1.
2023-12-11 21:00:08 -05:00
Ben Wolsieffer
ded5462398
nixos/syncthing: add databaseDir option
...
#264753 mistakenly used the dataDir option to set the -data argument.
This broke existing configurations because -data used to be set to
configDir (implicitly, using the -home option, which is equivalent to
setting -config and -data to the same value).
Fix this by introducing a new databaseDir option sets -data and defaults
to configDir. This maintains the existing behavior by default while
still allowing users to specify separate config and database
directories.
2023-12-11 20:52:37 -05:00
Martin Weinelt
a0f49243e4
Merge pull request #273510 from rnhmjoj/pr-fix-ping
...
nixos/networking-interfaces: fix rootless ping
2023-12-11 20:47:49 +01:00
Bobby Rong
9ed63709bc
flatpak: 1.14.4 → 1.14.5
...
https://github.com/flatpak/flatpak/compare/1.14.4...1.14.5
This contains build fix for AppStream 1.0.
2023-12-11 23:58:03 +08:00
Gabriel Fontes
a3c60d2ddc
nixos/nginx: make redirect status code configurable
...
Add an option to configure which code globalRedirect and forceSSL use.
It previously was always 301 with no easy way to override.
2023-12-11 11:09:02 -03:00
SharzyL
497903264e
nixos/firejail: fix typo
2023-12-11 21:47:43 +08:00
Sandro Jäckel
cbc8f4164b
nixos/pulseaudio: don't create config file or enable avahi when pulse is disabled
2023-12-11 14:38:18 +01:00
rnhmjoj
cdc24ab409
nixos/networking-interfaces: fix rootless ping
...
In 759ec111
the ping setuid wrapper was removed in favour of giving
permissions to perform ICMP echo requests to all users.
The problem is that the systemd file that was supposed to change the
`net.ipv4.ping_group_range` sysctl is not always installed, specifically
only if systemd.coredump.enable.
In that case the range is "0 1", which is effectively restricts ping to
only root.
This change explicitely sets the range to "0 2^31-1", as systemd does.
2023-12-11 13:22:26 +01:00
Jeff Huffman
0863f6d2da
nixos/stub-ld: init module
2023-12-11 05:47:23 -05:00
pennae
90c53f5341
Merge pull request #270224 from SuperSandro2000/patch-2
...
nixos/acme: add syntax highlighting to code blocks
2023-12-11 09:03:32 +01:00
Florian Klink
1c09cb43ce
nixos/avahi: rename remaining config options
...
services.avahi.nssmdns got split into services.avahi.nssmdns{4,6},
nothing should access the old alias anymore so there's no eval warnings.
Reported in https://github.com/NixOS/nixpkgs/pull/258424#issuecomment-1849428869
2023-12-11 09:36:15 +02:00
Jonathan Davies
c57a4037f5
nixos/thanos: Changed query.replica-labels to a list parameter.
...
Fixes : #273432
2023-12-10 23:55:15 +00:00
Ivan Petkov
fc004b09e5
nixos/ups: install udev rules for nut
...
This is necessary to allow the usbhid driver to successfully send
commands to the attached UPS.
It is possible to work around this by explicitly using setting the user
flag (e.g. `upsdrvctl -u root shutdown`), though it is much simpler to
install the udev rules rather than patch things further.
2023-12-10 11:23:37 -08:00
Sandro
5a64fb2799
nixos/acme: add syntax highlighting to code blocks
2023-12-10 19:59:22 +01:00
Ryan Lahfa
c36344b125
Merge pull request #272920 from SuperSandro2000/nginx-return
2023-12-10 19:38:18 +01:00
Jonas Heinrich
b3eddb0c53
Merge pull request #272646 from onny/btrbk-stream-compress
...
nixos/btrbk: Add required stream_compress packages
2023-12-10 18:38:38 +01:00
Nick Cao
d374eafed6
Merge pull request #273224 from s-sinnlos/ddclient-docs-fix
...
nixos/ddclient: Update link to protocols documentation
2023-12-10 11:48:54 -05:00
Nick Cao
38304747b0
Merge pull request #272314 from NickCao/ppd
...
nixos/power-profiles-daemon: add package option
2023-12-10 11:34:46 -05:00
Martin Weinelt
ebfca42b8b
Merge pull request #272576 from NixOS/home-assistant
...
home-assistant: 2023.11.3 -> 2023.12.0
2023-12-10 14:51:43 +01:00
Florian Klink
672d103402
Merge pull request #258424 from SuperSandro2000/nss-mdns-timeout
...
nixos/avahi-daemon: resolve mdns over only over ipv4
2023-12-10 15:34:14 +02:00
Martin Weinelt
b55c45c43a
Merge pull request #273324 from azuwis/hass-lovelace
...
nixos/home-automation: really fix lovelace card entrypoint
2023-12-10 13:55:43 +01:00
Felix Buehler
9537527389
nixos/installation-device: remove warning about mdadm
2023-12-10 13:06:25 +01:00
Maximilian Bosch
9f9de7c5e3
Merge pull request #272919 from SuperSandro2000/nextcloud
...
nixos/nextcloud: allow phpOptions to contain ints
2023-12-10 12:49:52 +01:00
Zhong Jianxin
b097e95193
nixos/home-automation: really fix lovelace card entrypoint
2023-12-10 19:12:55 +08:00
Sandro Jäckel
acb20c175f
nixos/no-x-libs: add mupdf
2023-12-10 09:12:47 +00:00
Niklas Hambüchen
d65c4445a9
Add hardware.sane.backends-package option.
...
Allows overriding `sane-backends` drivers without rebuilding many packages.
2023-12-10 07:42:17 +01:00
Anderson Torres
d7605f18a9
nixos.shibboleth-sp: remove jammerful from meta.maintainers
2023-12-09 22:39:10 -03:00
s-sinnlos
08c9bcc627
nixos/ddclient: Update link to protocols documentation
...
Link to maintained docs on https://ddclient.net/
2023-12-10 00:38:57 +01:00
nicoo
a351c9b530
nixos/wpa_supplicant: Ensure the generated config isn't world-readable
...
Otherwise, `environmentFile` cannot be used to pass secrets in.
2023-12-09 21:33:55 +00:00
Martin Weinelt
04c2893d58
nixos/home-assistant: fix broken reference in option example
2023-12-09 17:51:13 +01:00
Martin Weinelt
0645ff3b62
nixos/home-assistant: update bluetooth components
...
eq3btsmart was removed in 2023.12.0.
2023-12-09 17:51:12 +01:00
Maximilian Bosch
2ee3ddef8c
Merge pull request #266935 from s-sinnlos/nextcloud26-ocm-dir-fix
...
nixos/nextcloud: missing ocm-dir applys also from 26.0.8 onward
2023-12-09 14:00:59 +01:00
Ryan Lahfa
b69fbe2670
Merge pull request #272996 from RaitoBezarius/netdata-improvements
2023-12-09 14:00:48 +01:00
Maximilian Bosch
06216a9168
Merge pull request #272564 from SuperSandro2000/grafana
...
nixos/grafana: create plugins directory in provisioning, fix deprecation warning
2023-12-09 13:51:55 +01:00
Jonas Heinrich
1440b865c0
nixos/btrbk: Add required stream_compress packages
2023-12-09 13:03:46 +01:00
Peder Bergebakken Sundt
e43bbcfaec
Merge pull request #272557 from ambroisie/update-tandoor-recipes
...
tandoor-recipes: 1.5.6 -> 1.5.10
2023-12-09 03:12:36 +01:00
Lassulus
b8ca5f4f46
Merge pull request #137003 from yayayayaka/add-pkg-jigasi
...
jigasi: init at 1.1-311-g3de47d0 + module
2023-12-09 02:28:50 +01:00
Raito Bezarius
db1e415c07
nixos/netdata: ensure analytics reporting is truly opted-out
...
Fixes 260035.
2023-12-09 00:47:56 +01:00
Silvan Mosberger
bf67c02b1b
Merge pull request #272744 from hercules-ci/lib-lists-sortOn
...
`lib.lists.sortOn`: init
2023-12-08 23:11:05 +01:00
Robert Hensing
7438f4e0de
nixos/btrbk: Optimize sort
...
This avoids computing the prio more than necessary.
The test evaluates to the same derivation hash.
2023-12-08 22:15:30 +01:00
Robert Hensing
47aff944e4
Merge pull request #257503 from SuperSandro2000/postgres-extraPlugins
...
nixos/postgresql: take extraPlugins packageset from package option
2023-12-08 21:51:05 +01:00
Maciej Krüger
7a7925e722
Merge pull request #270034 from ckiee/transmission-watchdir-typo
2023-12-08 18:23:00 +01:00
Maciej Krüger
a2595d975f
Merge pull request #272508 from jacobgreenleaf/jg-teamspeak3-protos
2023-12-08 18:17:37 +01:00
Nick Cao
d79786694d
Merge pull request #270355 from sinanmohd/iwd-resolvconf
...
nixos/iwd: fix broken dhcp dns configuration
2023-12-08 10:58:25 -05:00
Weijia Wang
6f6d03b284
Merge pull request #272875 from chayleaf/maubot
...
nixos/maubot: fix eval with default config
2023-12-08 16:23:20 +01:00
Sandro Jäckel
78541e68eb
nixos/nginx: allow return to be an int
2023-12-08 15:04:27 +01:00
Sandro Jäckel
eaa581b5c3
nixos/nextcloud: allow phpOptions to contain ints
2023-12-08 15:03:09 +01:00
Sandro Jäckel
3bb72ed9fd
treewide: fix services.postgresql.extraPlugins usage
2023-12-08 14:58:18 +01:00
Sandro Jäckel
4fe5824fc7
nixos/postgresql: take extraPlugins packageset from package option
...
This allows to reuse the extraPlugins option in other context's for
example an upgrade script.
2023-12-08 14:58:18 +01:00
sinanmohd
d173469d3b
nixos/iwd: fix broken dhcp dns configuration
2023-12-08 18:00:29 +05:30
chayleaf
57e3ca7057
nixos/maubot: fix eval with default config
2023-12-08 17:35:11 +07:00
Gabriel Arazas
85fcb9b4ef
nixos/guix: fix user activation script
2023-12-08 17:56:54 +08:00
Martin Weinelt
7b8be9c335
nixos/wyoming/{faster-whisper,piper}: hook up enable option
2023-12-07 22:27:15 +01:00
Bruno BELANYI
d23f965f8b
nixos/tandoor-recipes: fix deprecated config key
...
See the 1.5.10 release notes [1].
[1]: https://github.com/TandoorRecipes/recipes/releases/tag/1.5.10
2023-12-07 19:12:15 +00:00
Weijia Wang
9f1f87b612
Revert "wordpress: fixed installing of languages"
2023-12-07 18:27:40 +01:00
Yaya
767e3dab38
nixos/jitsi-meet: Integrate jigasi
...
This commit introduces the possibility to optionally enable the Jitsi
Gateway to SIP (jigasi) module. SIP credentials can be defined in
`services.jigasi.environmentFile`.
2023-12-07 13:36:53 +00:00
Yaya
c84f3a33b4
nixos/jigasi: init
2023-12-07 13:36:53 +00:00
Kim Lindberger
9ec830423e
Merge pull request #267906 from talyz/keycloak-hostname-url
...
nixos/keycloak: Allow setting `hostname-url`
2023-12-07 12:07:49 +01:00
Peder Bergebakken Sundt
b8c62ab390
Merge pull request #271289 from Luflosi/teeworlds-module-reduce-closure
...
nixos/teeworlds: reduce closure size
2023-12-07 10:19:11 +01:00
Peder Bergebakken Sundt
7a8ee53fdb
Merge pull request #269908 from pbsds/fix-ejabberd-1700922829
...
nixos/ejabberd: ensure erlang cookie is made
2023-12-07 10:18:37 +01:00
Peder Bergebakken Sundt
5be3695680
Merge pull request #268497 from katexochen/greetd/tuigreet-dir
...
greetd: create cache dir for tuigreet
2023-12-07 10:04:09 +01:00
Florian Klink
4db2e0cc80
Merge pull request #272542 from Sohalt/caddy-config-file
...
nixos/caddy: use caddyfile adapter by default with explicit configFile
2023-12-07 09:07:35 +02:00
Peder Bergebakken Sundt
d41449afb3
Merge pull request #256737 from illustris/spark
...
spark: init 3.5.0, 3.4.0->3.4.2, 3.3.2->3.3.3
2023-12-07 04:24:16 +01:00
Sandro Jäckel
8c972ce2c0
nixos/grafana: fix deprecation warning by using grafana server instead of grafana-server
...
Deprecation warning: The standalone 'grafana-server' program is deprecated and will be removed in the future. Please update all uses of 'grafana-server' to 'grafana server'
2023-12-06 23:40:30 +01:00
Sandro Jäckel
cff247a127
nixos/grafana: create plugins directory in provisioning
...
The error message was:
msg="Failed to read plugin provisioning files from directory" path=/nix/store/gs2cy8n6ndsa1f7msf7ndl8f85xl1pzg-grafana-provisioning/plugins
error="open /nix/store/gs2cy8n6ndsa1f7msf7ndl8f85xl1pzg-grafana-provisioning/plugins: no such file or directory"
2023-12-06 23:40:29 +01:00
h7x4
5ec449a6be
nixos/borgbackup: add listOf str
types to extraArgs
2023-12-06 23:12:21 +01:00
Sandro Jäckel
801ecec785
nixos/no-x-libs: add ghostscript
2023-12-06 22:58:46 +01:00
sohalt
3c6b3d71fa
nixos/caddy: Use caddyfile adapter by default when explicitly specifying configFile
2023-12-06 21:57:21 +01:00
phaer
c40f706dc4
nixos/nginx/tailscale-auth: init module
2023-12-06 20:57:38 +01:00
Vincent Haupert
44522d8478
nixos/vector: align service restart policy with upstream
...
Restart vector 5 times within 10s on exit. The upstream systemd unit
uses the same values.
2023-12-06 19:15:11 +00:00
Adam C. Stephens
b1f7f1ce6d
Merge pull request #271689 from adamcstephens/lxc/team
...
treewide: init lxc team and take ownership of components
2023-12-06 13:55:45 -05:00
Atemu
f39eb36250
nixos/snapraid: remove from top-level
...
I don't use this tool but saw it in the top level and that's not where it should
live.
This could arguably also be seen as a RAID; it's a bit of an in-between.
2023-12-06 19:02:38 +01:00
Jacob Greenleaf
ed67e22139
nixos/teamspeak3: SSH and HTTP ip+port options
...
ServerQuery actually listens on three separate addresses each
corresponding to its own protocol (raw/telnet, ssh, and http). By only
setting `query_addr` we only update what IP we listen on for the raw
protocol, not ssh and http protocols which end up listening on the
default wildcard address.
This change simply makes it so that setting `queryIP` sets the IP for
all three protocols by setting each corresponding option (`query_ip`,
`query_ssh_ip` and `query_http_ip`).
2023-12-06 08:31:38 -08:00
Jörg Thalheim
bd88398369
nixos/harmonia: allocate user
...
DynamicUser seem to broken in combination with the nix-daemon.
2023-12-06 12:56:35 +01:00
Martin Weinelt
d809a6f9c3
nixos/home-automation: fix lovelace card entrypoint
...
Only append the .js extension to the card pname, not to the specified
entrypoint.
2023-12-06 04:35:35 +01:00
Martin Weinelt
b908dc8654
Merge pull request #271785 from SuperSandro2000/hass-custom-lovelace
...
nixos/home-assistant: fix custom lovelace module loading
2023-12-06 04:10:34 +01:00
maxine
ad7955279d
Merge pull request #270011 from christoph-heiss/networkd-fix-wgpeer-doc
...
nixos/networkd: fix manpage for `WireGuardPeer` config
2023-12-06 00:33:05 +01:00
happysalada
21d23dddd8
nixos/windmill: init module
2023-12-05 22:54:18 +00:00
happysalada
93c790aef3
nixos/clamav: add scanner service
2023-12-05 22:53:35 +00:00
happysalada
6b014e92de
nixos/clamav: fix /run/clamav being removed
2023-12-05 22:53:35 +00:00
maxine
f73dbfa5f8
Merge pull request #213006 from Majiir/nut
...
nixos/ups: add options for essential config files
2023-12-05 23:14:37 +01:00
Sandro Jäckel
bba808dbfa
nixos/avahi-daemon: resolve mdns only over enabled protocols, disable ipv6 by default
...
see https://github.com/lathiat/nss-mdns#:~:text=in%20such%20a%20situation%20causes%20long%20timeouts%20when%20resolving%20hosts
especially:
> libnss_mdns.so.2 resolves both IPv6 and IPv4 addresses, libnss_mdns4.so.2 only IPv4 addresses and
> libnss_mdns6.so.2 only IPv6 addresses. Due to the fact that most mDNS responders only register local IPv4
> addresses via mDNS, most people will want to use libnss_mdns4.so.2 exclusively. Using libnss_mdns.so.2
> or libnss_mdns6.so.2 in such a situation causes long timeouts when resolving hosts since most modern
> Unix/Linux applications check for IPv6 addresses first, followed by a lookup for IPv4.
2023-12-05 21:51:12 +01:00
Nick Cao
e9f0a62ef5
nixos/power-profiles-daemon: add package option
2023-12-05 13:21:32 -05:00
Nick Cao
0588b4bda0
nixos/power-profiles-daemon: drop with lib
2023-12-05 13:21:30 -05:00
Thiago Kenji Okada
bed09b735f
Merge pull request #226923 from Drakonis/prometheus/agent-mode
...
nixos/prometheus: add `enableAgentMode` option
2023-12-05 17:17:37 +00:00
Sandro
d011c93f7d
nixos/hound: adopt, rework, cleanup ( #268983 )
...
- add me as maintainer
- remove hardcoded user id
- validate syntax of config file
- remove superfluous option extraGroups
- use mkPackageOptionMD
2023-12-05 15:59:26 +01:00
Victor Hugo Aguiar Pacce
5c6c35d0f8
nixos/prometheus: add enableAgentMode option
...
Required for running a prometheus service under agent mode
Signed-off-by: Victor Hugo Aguiar Pacce <victorhugoaguiarpacce@gmail.com>
2023-12-05 11:24:04 -03:00
Robert Hensing
708e7ccb37
Merge pull request #271423 from hercules-ci/nixos-nix.nix-nix-config-show
...
nixos/nix.nix: Support new Nix 2.20 command syntax
2023-12-05 14:47:20 +01:00
Pol Dellaiera
d79be73295
Merge pull request #271628 from scvalex/kubernetes-flannel-dont-open-ports
...
kubernetes: don't always open flannel fw ports
2023-12-05 12:29:21 +01:00
Janik
7703f36fd1
Merge pull request #269469 from NetaliDev/zammad-update
2023-12-05 09:29:51 +01:00
Madoura
10207ea919
linux_testing_bcachefs: fully deprecate in favor of 'linux_testing'
...
Follow-up to https://github.com/NixOS/nixpkgs/pull/267640 for 23.11 post-release
2023-12-05 01:05:40 -06:00
h7x4
e6a98c8254
nixos/mattermost: fix mkPackageOption
default name
2023-12-04 23:12:25 +01:00
netali
a1f6e1d6f1
nixos/zammad: update for zammad 6.1
2023-12-04 23:10:07 +01:00
K900
3c1ad28f89
Merge pull request #266234 from SuperSamus/plasma-dconf-glib
...
nixos/plasma5: enable dconf by default
2023-12-05 00:23:29 +03:00
Ryan Lahfa
0275f6fc9e
Merge pull request #272061 from JulienMalka/clevis-fix-zfs-evaluation
2023-12-04 19:36:39 +01:00
Julien Malka
28608b0448
nixos/clevis: skip filesystem with null devices
2023-12-04 15:21:16 +00:00
Julien Malka
9b6b934949
nixos/clevis: guard zfs code behind config.clevis.boot.initrd.enable
2023-12-04 15:09:49 +00:00
Adam Stephens
27064dd722
nixos/lxc: remove with lib
2023-12-04 10:06:54 -05:00
Adam Stephens
ccb7b8e309
nixos/lxcfs: remove with lib
2023-12-04 10:06:52 -05:00
Adam Stephens
6765aac154
treewide/lxc: set lxc team as maintainer
2023-12-04 10:06:50 -05:00
Kerstin
ba513b2979
Merge pull request #270522 from schmittlauch/mastodon-streaming-processes-number-docs
...
Proposal: nixos/mastodon; Releasenotes and (possibly) better error messages for `streamingProcesses`
2023-12-04 16:04:27 +01:00
Nick Cao
c0443ea94c
Merge pull request #271869 from wentasah/redmine-assertions
...
nixos/redmine: Fix database assertions
2023-12-04 08:56:45 -05:00
John Garcia
f509382c11
node-red_service: correct package to nodePackages.node-red
2023-12-04 11:53:23 +00:00
zowoq
34deb05e55
nixos/buildbot: fix worker package
2023-12-04 13:55:09 +10:00
Trolli Schmittlauch
cbf69c83d3
nixos/mastodon: clarify the need to set streamingProcesses
...
Explicitly declaring that option is now necessary, but wasn't in the module shipped with 23.05.
2023-12-04 02:18:39 +01:00
Jeff Huffman
bf6f0d3cf4
nixos/ldso: init module
2023-12-03 16:23:44 -05:00
Emily
a0ba4615da
Merge pull request #270467 from nalves599/269944-keepalived-firewall
...
nixos/keepalived: add openFirewall option
2023-12-03 20:37:09 +01:00
Nick Cao
fba68401fb
Merge pull request #271835 from undefined-moe/patch-2
...
prometheus-mongodb-exporter: fix service ExecStart
2023-12-03 09:35:28 -05:00
Weijia Wang
d1fc3a5f9f
Merge pull request #253428 from Yarny0/tsm-freeform
...
nixos/tsm-client: migrate to freeform settings (RFC42)
2023-12-03 14:50:12 +01:00
Michal Sojka
8667baf161
nixos/redmine: Fix database assertions
...
Recent PR 266270[1] modified an assertion related to database settings
of the redmine service. There are two problems with that change:
1. Assert message was not updated to reflect the change in the assert
condition.
2. The new condition applies only to postgresql, not the default
mysql. Therefore, the assertion breaks existing mysql-based
installations without any reason.
This commit fixes these by 1) reverting the modified assertion to the
previous value, making the message match the condition and 2) adding a
new assertion that applies only to postgresql.
[1]: https://github.com/NixOS/nixpkgs/pull/266270
2023-12-03 14:41:42 +01:00
Weijia Wang
f5f2b471f3
Merge pull request #271437 from martinetd/ankisyncd-deprecation
...
ankisyncd: mark module as deprecated
2023-12-03 14:35:57 +01:00
Weijia Wang
4e81387d5b
Merge pull request #264331 from foo-dogsquared/add-nixos-guix-module
...
nixos/guix: init
2023-12-03 13:03:43 +01:00
Pol Dellaiera
9284581a09
Merge pull request #271376 from kallistoteles/thinkfan-service-restart
...
nixos/thinkfan: restart on failure
2023-12-03 12:47:01 +01:00
undefined
3c4370ca2f
prometheus-mongodb-exporter: fix service ExecStart
2023-12-03 17:54:21 +08:00
kalle
f1e6c6641e
nixos/thinkfan: add setting
...
the thinkfan service failed from time to time on my t440s, so I added
restart on fail to the systemd service.
2023-12-03 08:45:03 +01:00
Bobby Rong
43744f5bc4
Merge pull request #268515 from NixOS/cinnamon
...
Cinnamon 6.0
2023-12-03 12:20:39 +08:00
Majiir Paktu
c1793ff623
nixos/ups: add {users,upsmon,upsd} config options
2023-12-02 22:44:07 -05:00
Majiir Paktu
09002e9d23
nixos/ups: various fixes & clean up
...
- Ensure NUT_STATEPATH exists (fixes service startup)
- Use mode option to enable services (fixes #113735 )
- Remove extraneous slash in paths (fixes confusing logs)
- Support reload for upsmon and upsd
- Remove ExecStart wrapper scripts
2023-12-02 22:42:14 -05:00
Sandro Jäckel
663dbfb82d
nixos/home-assistant: fix custom lovelace module loading
...
based on https://community.home-assistant.io/t/ui-lovelace-yaml-and-custom-resources/240178/4
Tested on a home-assistant server and before the card was not loaded at all.
After this it threw an error that my config is wrong.
2023-12-03 00:53:59 +01:00
Lin Jian
094017d16d
Merge pull request #271723 from LDprg/master
...
nixos/preload: fix log permission
2023-12-02 16:58:19 -06:00
Nuno Alves
24d9151d15
nixos/keepalived: add openFirewall option
...
Allow VRRP and AH (authentication packets) through the firewall
automatically if the option is set.
2023-12-02 22:42:12 +00:00
Janik
c3ac6b916c
Merge pull request #271441 from NetaliDev/mysql-auth-fix
2023-12-02 23:34:51 +01:00
Martin Weinelt
2a57f9aeba
Merge pull request #271760 from SuperSandro2000/hass-switching-lovelace-writtable
...
nixos/home-assistant: fix error when switching between writable and none writable lovelace config
2023-12-02 23:09:25 +01:00
Sandro Jäckel
57bfbc781c
nixos/home-assistant: fix error when switching between writable and none writable lovelace config
...
error message before was:
cp: not writing through dangling symlink '/var/lib/hass/ui-lovelace.yaml'
2023-12-02 23:04:48 +01:00
Benjamin Saunders
dffba14043
nixos/matrix-appservice-irc: fix syscall filter
...
The pre-start script requires @chown; the service fails without it.
2023-12-02 12:03:58 -08:00
LDprg
6f33e6e4ab
nixos/preload: fix log permission
2023-12-02 19:19:33 +01:00
Peder Bergebakken Sundt
1079eccc63
Merge pull request #262133 from h7x4/cleanup-screen-module
...
nixos/screen: clean up module
2023-12-02 15:56:45 +01:00
Ryan Lahfa
8626b5c06d
Merge pull request #257525 from SaumonNet/clevis
2023-12-02 12:58:01 +01:00
Peder Bergebakken Sundt
598129ea00
Merge pull request #243476 from OPNA2608/init/lomiri/ayatana-messages
...
ayatana-indicators: init messaging indicator, module, test
2023-12-02 12:56:21 +01:00
Camille Mondon
27493b4d49
nixos/clevis: init
...
Co-Authored-By: Julien Malka <julien@malka.sh>
2023-12-02 11:55:47 +00:00
Alexandru Scvortov
f9123510db
kubernetes: don't always open flannel fw ports
2023-12-02 10:50:56 +00:00
Yarny0
20a9a21b24
nixos/tsm-client: add migration code for freeform settings
...
To help users migrate from the previous
settings to new freeform settings type,
the commit at hand adds some
`mkRemovedOptionModule` and `mkRenamedOptionModule`.
These modules are not designed to work
inside an attribute set of submodules.
They create values for `assertions` and
`warnings` to inform the user of required changes.
Also, these informational texts do not contain
the full attribute path of the changed options.
To work around these deficiencies,
we define the required options `assertions` and `warnings`
inside the submodule and later add the values collected
inside these options to the corresponding top-level options.
In the course of doing so, we also add the full attribute path
to the informational texts so the user knows these warning
and error messages refer to the `tsmClient.servers` option.
Also, we have to filter out `warnings`, `assertions`, and
the "old" options when rendering the target config file.
2023-12-02 09:09:28 +01:00
Yarny0
98c03bf8c6
nixos/tsm-client: stricter assertions
...
Check for spaces or duplicate names in server config keys.
Since server config keys are case insensitive,
a setting like
```
{
compression = "yes";
Compression = "no";
}
```
would lead to an ambiguous configuration.
2023-12-02 09:09:27 +01:00
Yarny0
3fb29fecd5
nixos/tsm-client: use freeformType
for server config
...
`tsm-client` uses a global configuration
file that must contain coordinates for each
server that it is supposed to contact.
This configuration consists of text
lines with key-value pairs.
In the NixOS module, these servers may be declared
with an attribute set, where the attribute name
defines an alias for the server, and the value
is again an attribute set with the settings for
the respective server.
This is organized as an option of type `attrsOf submodule...`.
Before this commit:
Important settings have their own option within
the submodule. For everything else, there is
the "catch-all" option `extraConfig` that may
be used to declare any key-value pairs.
There is also `text` that can be used to
add arbitrary text to each server's
section in the global config file.
After this commit:
`extraConfig` and `text` are gone,
the attribute names and values of each server's attribute
set are translated directly into key-value pairs,
with the following notable rules:
* Lists are translated into multiple lines
with the same key, as such is permitted by
the software for certain keys.
* `null` may be used to override/shadow a value that
is defined elsewhere and hides the corresponding key.
Those "important settings" that have previously been
defined as dedicated options are still defined as such,
but they have been renamed to match their
corresponding key names in the configuration file.
There is a notable exception:
"Our" boolean option `genPasswd` influences the "real"
option `passwordaccess', but the latter one is
uncomfortable to use and might lead
to undesirable outcome if used the wrong way.
So it seems advisable to keep the boolean option
and the warning in its description.
To this end, the value of `getPasswd` itself is
later filtered out when the config file is generated.
The tsm-backup service module and the vm test are adapted.
Migration code will be added in a separate
commit to permit easy reversal later, when the
migration code is no longer deemed necessary.
2023-12-02 09:09:27 +01:00
Yarny0
8b918ed8ab
nixos/tsm-client: submodule doesn't need singleton list
2023-12-02 09:09:27 +01:00
Yarny0
5bc6eb731e
nixos/tsm-client: server alias names cannot have spaces
2023-12-02 09:09:27 +01:00
Yarny0
fe96d79adf
nixos/tsm-client: drop own checkIUnique
for allUnique
2023-12-02 09:09:27 +01:00
Yarny0
363cf1e363
nixos/tsm-client: use mkPackageOption
for wrappedPackage
2023-12-02 09:08:47 +01:00
Yarny0
d5f337809e
nixos/backup/tsm: use lib.getExe'
for service command line
2023-12-02 09:05:45 +01:00
Yarny0
cec6d7f51a
nixos/tsm*: update product name and URLs
...
With the tsm-client 8.1.19.0 release,
IBM renamed the product brand from
"IBM Spectrum Protect" to "IBM Storage Protect":
https://www.ibm.com/support/pages/node/6964770 .
The package already got updated in commits
5ff5b2ae4c
and
a4b7a62532
.
The commit at hand updates the modules accordingly.
2023-12-02 09:05:45 +01:00
Bobby Rong
9247bdfce7
nixos/cinnamon: switch to xdg.portal.configPackages
...
This will make sure the config is in sync with upstream.
2023-12-02 12:12:48 +08:00
Emily Trau
54ba768be8
Merge pull request #271164 from helsinki-systems/feat/netbox-gunicorn
...
netbox: Inherit gunicorn from the package
2023-12-02 13:37:33 +11:00
Sefa Eyeoglu
c1f0be0373
nixos/postgresqlBackup: add Scrumplex as maintainer
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-12-01 19:08:31 +01:00
Sefa Eyeoglu
0aaf428fde
nixos/postgresqlBackup: add --rsyncable to compression programs
...
The --rsyncable option changes the behavior of gzip/zstd so that the
resulting files can be incrementally backed up easily. Tools like Borg,
rsync and xdelta can make use their deduplication/diff mechanisms more
easily.
In my local testing, this resulted in a 2% size increase for backup
files.
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2023-12-01 19:08:31 +01:00
netali
b1b67e980a
nixos/mysql-auth: fix passwords in config files
2023-12-01 14:04:45 +01:00
Dominique Martinet
8a2c07ba40
ankisyncd: mark module as deprecated
2023-12-01 21:21:35 +09:00
Robert Hensing
2d0f4a7ec1
nixos/nix.nix: Support new Nix 2.20 command syntax
...
Otherwise it shows a deprecation warning, which is escalated to
an error. For context, see
https://github.com/NixOS/nixpkgs/pull/139075#discussion_r733615550
2023-12-01 12:14:21 +01:00
Anthony Roussel
0db5959bd7
nixos/gns3-server: init
2023-12-01 12:11:18 +01:00
Emily Trau
00bee09724
Merge pull request #264419 from Noodlez1232/joycond-cemuhook
...
joycond-cemuhook: init at unstable-2023-08-09
2023-12-01 22:00:55 +11:00
Weijia Wang
a06a0562f1
Merge pull request #271302 from SohamG/patch-1
...
nixos/oddjobd: add SohamG as maintainer
2023-12-01 09:19:46 +01:00
Soham Gumaste
e1c0473dc4
nixos/oddjobd: add SohamG as maintainer
2023-12-01 09:17:45 +01:00
Gabriel Arazas
ad277ea47e
nixos/guix: init
2023-12-01 09:10:37 +01:00
Lin Jian
cdc1b4599f
Merge pull request #270096 from slotThe/emacs/192019-2
...
nixos/emacs: Remove absolute paths from documentation
2023-12-01 01:31:04 -06:00
Weijia Wang
07183914f1
Merge pull request #257692 from telotortium/anki-sync-server
...
nixos/anki-sync-server: init
2023-12-01 08:30:36 +01:00
Sarah Brofeldt
110828e412
Merge pull request #271243 from shyim/fix-opensearch-boot
...
nixos/opensearch: check plugins directory exists before checking content
2023-12-01 06:33:50 +01:00
Emily Trau
7edd128431
Merge pull request #266746 from serpent213/patch-2
...
nixos/roundcube: Ignore newline at end of password file
2023-12-01 15:50:05 +11:00
lgoette
d14a788127
nixos/pulseaudio: set permission of pulse home directory
...
Closes #114399
2023-12-01 15:47:22 +11:00
Mario Rodas
15b5295311
Merge pull request #270847 from anthonyroussel/updates/tomcat_10_1_16
...
tomcat10: 10.1.15 -> 10.1.16
2023-11-30 22:38:23 -05:00
Emily Trau
f3814afdc6
Merge pull request #269353 from kylehendricks/snapraid-fix-split-parity2
...
snapraid: fix split parity files
2023-12-01 13:40:32 +11:00
Silvan Mosberger
54c8a15650
Merge pull request #271247 from h7x4/treewide-mkpackageoptionmd-to-mkpackageoption
...
treewide: replace `mkPackageOptionMD` with `mkPackageOption`
2023-12-01 02:09:10 +01:00
h7x4
f12eabdcbe
nixos/screen: clean up
2023-12-01 01:35:29 +01:00
Philip Taron
0a226a0639
nixos/qemu: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:44:36 -08:00
Philip Taron
07004b46ac
nixos/lxd-agent: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:42:49 -08:00
Philip Taron
54064109fb
nixos/network-interfaces: ensure correct ordering w.r.t. shutdown.target
...
Also, mark this service as `oneshot`, since it is.
2023-11-30 15:39:01 -08:00
Philip Taron
e95b3d3915
nixos/zfs: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:34:52 -08:00
Philip Taron
d4f57da9e8
nixos/bcachefs: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:34:31 -08:00
Philip Taron
9c505de9f4
nixos/filesystems: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:34:11 -08:00
Philip Taron
1f73c2a7b6
nixos/initrd-secrets: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:18:23 -08:00
Philip Taron
0db4d5b335
nixos/initrd-ssh: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:12:10 -08:00
Philip Taron
e4136ed6dd
nixos/growpart: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:09:59 -08:00
Philip Taron
5ab8a128de
nixos/firewall-iptables: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:07:03 -08:00
Philip Taron
a7a5b2eca1
nixos/suid-sgid-wrappers: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:03:56 -08:00
Philip Taron
d7ab46ed87
nixos/duosec: ensure correct ordering w.r.t. shutdown.target
2023-11-30 15:02:51 -08:00
Philip Taron
407ef67228
nixos/auditd: ensure correct ordering w.r.t. shutdown.target
...
This looks like it's got a few other idiosyncrasies, but I'll leave it
alone for now.
2023-11-30 15:00:39 -08:00
Philip Taron
454f3cb58d
nixos/apparmor: ensure correct ordering w.r.t. shutdown.target
2023-11-30 14:57:59 -08:00
Philip Taron
28bb97817f
nixos/swap: ensure correct ordering w.r.t. shutdown.target
2023-11-30 14:56:39 -08:00
Franz Pletz
9619439772
Merge pull request #270004 from Stunkymonkey/libvirtd-add-netcat
2023-11-30 21:04:02 +01:00
Franz Pletz
32caf62376
Merge pull request #268887 from jchw-forks/libvirt-nss
2023-11-30 20:48:24 +01:00
Franz Pletz
c4b7e013aa
Merge pull request #243834 from LunNova/lunnova/i3-update-session-environment
2023-11-30 20:42:13 +01:00
Peder Bergebakken Sundt
23fb8f614b
Merge pull request #261378 from lamarios/auto-epp
...
auto-epp: init at 1.2.1
2023-11-30 19:47:12 +01:00
Luflosi
efca3c0329
nixos/teeworlds: reduce closure size
...
Use `teeworlds-server` instead of `teeworlds`.
We don't need an entire GUI program just to run the server.
2023-11-30 19:26:35 +01:00
Soner Sayakci
87b3a98c36
nixos/opensearch: check plugins directory exists before checking content
2023-11-30 19:09:11 +01:00
h7x4
79d3d59f58
treewide: replace mkPackageOptionMD
with mkPackageOption
2023-11-30 19:03:14 +01:00
Peder Bergebakken Sundt
637577f1bb
Merge pull request #261704 from baloo/baloo/dublin-traceroute/init
...
dublin-traceroute: init at 2023.04.12
2023-11-30 18:17:24 +01:00
Weijia Wang
b474de4779
nixos/anki-sync-server: minor cleanup
2023-11-30 17:32:03 +01:00
Robert Irelan
8fe9c18ed3
nixos/anki-sync-server: init
...
Provide a NixOS module for the [built-in Anki Sync
Server](https://docs.ankiweb.net/sync-server.html ) included in recent
versions of Anki. This supersedes the `ankisyncd` module, but we should
keep that for now because `ankisyncd` supports older versions of Anki
clients than this module.
2023-11-30 17:25:17 +01:00
Maciej Krüger
50bb5d3338
Merge pull request #264929 from adamcstephens/incus/generator
2023-11-30 16:01:35 +01:00
Janne Heß
018175ecab
netbox: Inherit gunicorn from the package
...
I was using a 23.11 package on a NixOS 23.05 system and this caused the
python that was used in gunicorn to differ from the python the postgres
lib was linked against.
2023-11-30 11:51:37 +01:00
emilylange
9a821ebe0f
nixos/jitsi-meet: fix cfg.caddy.enable
...
This fixes the following error:
```
error: failed processing files:
FailedJobs(
"static/404.html": Permission denied (os error 13) at path "/build/static/.tmpRMzDXu"
)
```
2023-11-30 06:13:38 +00:00
Weijia Wang
8c734937d6
nixos/sourcehut: fix eval
2023-11-30 02:52:50 +01:00
Weijia Wang
feeae486de
Merge pull request #261702 from h7x4/replace-mkoption-with-mkpackageoption
...
treewide: use `mkPackageOption`
2023-11-30 02:49:30 +01:00
Weijia Wang
babc0d5e96
Merge pull request #257400 from wineee/deepin-23
...
deepin desktop environment: v20 -> v23Beta
2023-11-30 02:47:08 +01:00
Kyle Hendricks
463424129d
snapraid: fix split parity files
...
SnapRAID has a feature where you can specify "split" parity files. This
is useful when you're using 16tb or bigger ext4-formatted disks for
parity. ext4 doesn't support files bigger than 16tb so this "split
parity file" can be used to specify two parity files on a single parity
disk and SnapRAID will automatically use the subsequent file when the current
cannot grow anymore (hits 16TB). You specify these split parity files by
separating them with commas in the "parity" config option. This
mostly already works except when it comes to the scheduled systemd sync
job where it specifies ReadWritePaths. If you specify a parity with
multiple files you'll get an error when the systemd job runs: Failed to
set up mount namespacing:
/run/systemd/unit-root/mnt/parity1/snapraid1.parity,/mnt/parity1/snapraid2.parity: No such file or directory
Essentially, when the parity file paths are passed into ReadWritePaths,
they're always treated as a single path. This change makes sure to
split the paths if they contain a comma.
The big concern for this change is if it would break users who have
commas in their actual parity file paths. This won't be an issue because SnapRAID
itself blindly splits on commas for parity files, so legitimate commas in a parity
file path wouldn't work in SnapRAID anyway. See here:
978d812153/cmdline/state.c (L692)
SnapRAID doc for split parity files: https://www.snapraid.it/manual#7.1
2023-11-29 20:10:29 -05:00
Felix Bühler
b80ad550a8
Merge pull request #270519 from Stunkymonkey/esphome-fix-bwrap
...
nixos/esphome: fix bwrap
2023-11-29 19:40:48 +01:00
fasheng
52c81e882b
nixos/fail2ban: fix default value for banaction-allports
...
It's iptables-allports instead of iptables-allport.
https://github.com/fail2ban/fail2ban/tree/master/config/action.d
2023-11-29 16:17:53 +01:00
MinerSebas
95a5f14116
nixos/plasma5: Dont add samba a second time to environment.systemPackages
...
If `services.samba.enable` is true, the the samba Module already adds the samba Package. If a User sets a differnet Package in `services.samba.package` then `environment.systemPackages` will contain two different samba Packages.
```
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/testparm' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/testparm'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/testparm' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/testparm'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/nmbd' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/nmbd'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/nmbd' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/nmbd'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/smbcontrol' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/smbcontrol'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/smbcontrol' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/smbcontrol'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/gentest' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/gentest'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/gentest' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/gentest'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/smbpasswd' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/smbpasswd'
system-path> warning: collision between `/nix/store/rw5fzn10lb21xk3myc0d4m49j69d0crs-samba-4.19.2/bin/smbd' and `/nix/store/ssxn9pnl293knqghcjvpbzb6ysg0f7fv-samba-4.19.2/bin/smbd'
...
```
(The original samba will still stay in the closure as `kdenetwork-filesharing` depends on it.)
2023-11-29 16:15:52 +01:00
Stig
9f060c688e
Merge pull request #265661 from TomaSajt/lanraragi
...
lanraragi: 0.8.90 -> 0.9.0
2023-11-29 13:01:07 +01:00
TomaSajt
eac5dfd20f
lanraragi: 0.8.90 -> 0.9.0
2023-11-29 08:52:48 +01:00
Emily Trau
77cc213d14
Merge pull request #265349 from malt3/init/athens
...
athens: init at 0.12.1
2023-11-29 18:28:39 +11:00
Emily Trau
a557bce738
Merge pull request #270344 from hexclover/bump-mininet
...
mininet: 2.3.0 -> 2.3.1b4, make `mn` start again
2023-11-29 18:24:33 +11:00
Anthony Roussel
9a5f5ee7d3
nixos/tomcat: add anthonyroussel to maintainers
2023-11-29 07:56:09 +01:00
K900
9ad22d35b6
Revert "nixos/switch-to-configuration: remove explicit tmpfiles invocation"
2023-11-29 09:38:27 +03:00
Paul Fauchon
b034425636
nixos/auto-epp: init
2023-11-29 14:28:25 +08:00
Bernardo Meurer
ad1d3762bb
Merge pull request #269983 from nikstur/stc-tmpfiles
...
nixos/switch-to-configuration: remove explicit tmpfiles invocation
2023-11-28 18:26:44 -03:00
Will Fancher
7f213113e6
Merge pull request #218441 from tomfitzhenry/unl0kr
...
add boot.initrd.unl0kr
2023-11-28 16:10:11 -05:00
Adam Stephens
0fdef67e07
nixos/lxc-container: add adamcstephens as maintainer
2023-11-28 15:14:45 -05:00
Adam Stephens
2cd9619801
nixos/lxc-container: use lxc systemd generator
2023-11-28 15:14:43 -05:00
Aldwin Vlasblom
8efe6a71cb
nixos/vdirsyncer: fix config.statusPath option
...
The `services.vdirsyncer.jobs.<name>.config.statusPath` option was
making the appropriate changes to the systemd service options, but not
to the vdirsyncer config file.
2023-11-28 18:54:49 +01:00
tomberek
a2de752222
Merge pull request #267538 from nessdoor/pkgs/paste.sr.ht
...
sourcehut.pastesrht: add missing backend component
2023-11-28 12:40:09 -05:00
Arthur Gautier
070bcf9da4
nixos/dublin-traceroute: init
2023-11-28 08:47:56 -08:00
Atemu
6fc4c1c40c
Merge pull request #268574 from hercules-ci/linux-builder-no-eval
...
darwin.linux-builder: Disable evaluation
2023-11-28 17:31:08 +01:00
asymmetric
7da99477ca
Merge pull request #265368 from chayleaf/maubot
...
nixos/maubot: init
2023-11-28 16:58:46 +01:00
Someone Serge
d97d2fb271
nixos/clamav: ensure freshclam starts before clamav (if enabled)
2023-11-28 14:21:30 +00:00
chayleaf
00070cf866
nixos/maubot: init
2023-11-28 20:35:55 +07:00
Mario Rodas
3dba8d6fdb
Merge pull request #268634 from tie/redis-restrict-address-families
...
nixos/redis: loosen systemd address family restrictions
2023-11-27 20:06:29 -05:00
Maciej Krüger
7cc312f18b
Merge pull request #265730 from nbraud/nixos/sudo-rs/x2goserver
...
nixos/x2goserver: Support sudo-rs
2023-11-28 01:37:05 +01:00
Maëlys Bras de fer
03652db90b
nixos/river: add xdg.portal.config
2023-11-28 00:49:03 +01:00
Felix Buehler
9f563e21ac
nixos/esphome: fix bwrap
2023-11-28 00:48:30 +01:00
Nick Cao
4bde367b16
Merge pull request #270058 from K900/fix-libexec
...
treewide: /lib/libexec -> /libexec
2023-11-27 10:40:31 -05:00
Nick Cao
e0ece67a97
Merge pull request #270256 from schmittlauch/gite-forgejo-migration-phrasing
...
nixos/forgejo docs: correct phrasing
2023-11-27 09:33:21 -05:00
Jonas Chevalier
a403a118d1
fahclient: 7.6.21 -> 8.1.18 ( #246832 )
...
Rebuild from source
2023-11-27 14:20:58 +01:00
Tomas Antonio Lopez
9e6f9c6d83
nixos/sourcehut: remove usages of 'with lib;'
...
Inherit library attributes at a finer granularity, instead.
2023-11-27 08:22:48 -03:00
Tomas Antonio Lopez
ba6817ed22
nixos/sourcehut: add myself as maintainer
2023-11-27 08:22:48 -03:00
Tomas Antonio Lopez
087c83f45c
nixos/sourcehut: reformat expressions using nixpkgs-fmt
2023-11-27 08:22:48 -03:00
hexclover
4e6fc83b98
nixos/mininet: wrap with mininet in PYTHONPATH and ifconfig in PATH
2023-11-27 14:22:30 +08:00
Lin Jian
fbbbcfb879
Merge pull request #264661 from schoettl/dolibarr-with-package
...
nixos/dolibarr: add package option
2023-11-26 20:41:10 -06:00
h7x4
0a37316d6c
treewide: use mkPackageOption
...
This commit replaces a lot of usages of `mkOption` with the package
type, to be `mkPackageOption`, in order to reduce the amount of code.
2023-11-27 01:28:36 +01:00
Trolli Schmittlauch
0e893a9f22
nixos/forgejo docs: correct phrasing
2023-11-26 21:43:32 +01:00
Maciej Krüger
b63af5d7ea
Merge pull request #265728 from nbraud/nixos/sudo-rs/ssm-agent
2023-11-26 21:37:15 +01:00
Maciej Krüger
cdd67575e7
Merge pull request #265722 from nbraud/nixos/sudo-rs/btrbk
2023-11-26 21:36:20 +01:00
Sandro Jäckel
960527707b
nixos/mediawiki: don't clear default installed extensions
2023-11-26 20:29:49 +01:00
Jörg Thalheim
501680a656
nixos/telegraf: include procps if procstat input is configured
2023-11-26 20:26:48 +01:00
Sandro Jäckel
8ae9c8640c
nixos/mediawiki: don't assume language of main page
...
The mainpage might be named Hauptseite and mediawiki redirects from
/wiki/ on its own to there
2023-11-26 19:59:32 +01:00
Sandro Jäckel
f68be841c9
nixos/mediawiki: use fastcgi.conf file which contains extra parameter
2023-11-26 19:59:32 +01:00
Maciej Krüger
3250f15338
Merge pull request #263471 from nbraud/nixos/sudo-rs/cleanup
2023-11-26 19:57:31 +01:00
Robert Hensing
ecef65f019
Merge pull request #269970 from emilylange/nixos-containers-warning
...
nixos/containers: warn if containers are used but disabled
2023-11-26 19:39:32 +01:00
Jörg Thalheim
f468e0d111
nixos/mediawiki: quote shell flags passed to installer
2023-11-26 17:25:14 +01:00
Jörg Thalheim
0bd8759d1c
nixos/mediawiki: drop sqlite variant
...
Probably no one ever tested this, mediawiki tries to create the database inside the read-only
package. There might be a proper fix but for now it's better to not advertise unsupported options.
2023-11-26 17:25:14 +01:00
Sandro
e580ab8c3e
nixos/mediawiki: update url option defaultText
2023-11-26 17:24:15 +01:00
Mihai-Drosi Câju
be6ac65b52
nixos/waydroid: remove with lib;
and friends
2023-11-26 17:13:15 +02:00
3JlOy_PYCCKUI
64002ec9b0
nixos/torrentstream: init
2023-11-26 16:36:48 +02:00
Pierre Bourdon
c6c20c63b4
Merge pull request #269954 from imincik/fix-tmate-ssh-server-module
...
nixos/tmate-ssh-server: fix tmate-client-config script
2023-11-26 12:42:09 +01:00
Thiago Kenji Okada
e6e0787c3f
Merge pull request #256159 from YtvwlD/yama
...
nixos/sysctl: Stop disabling yama by default
2023-11-26 10:32:32 +00:00
Tony Zorman
13da2e9463
nixos/emacs: Remove absolute paths from documentation
...
Apart from being bad practice, absolute paths may be confusing;
especially the `services.emacs.package` definition in the "Running
Emacs as a service" section. Remove them.
Supersedes: https://github.com/NixOS/nixpkgs/pull/192019
Co-authored-by: Alexander Bantyev <balsoft@balsoft.ru>
2023-11-26 11:22:28 +01:00
Ivan Mincik
df254b2dd2
nixos/tmate-ssh-server: fix tmate-client-config script
2023-11-26 09:34:51 +01:00
K900
54c8998ba1
treewide: /lib/libexec -> /libexec
...
/lib/libexec doesn't exist.
2023-11-26 10:55:37 +03:00
Lin Jian
5ba42a0de2
Merge pull request #260902 from LDprg/master
...
preload: init at 0.6.4
2023-11-25 23:29:40 -06:00
Mario Rodas
1744e3fa01
Merge pull request #266675 from anthonyroussel/sonic-server-nixos
...
nixos/sonic-server: init
2023-11-25 23:45:16 -05:00
ckie
d5260c5544
nixos/transmission: correct typo on systemd StateDirectory
...
systemd would previously create a nonoperational
"/var/lib/transmission/watch-dir" directory due to a typo in the
StateDirectory array ("watch-dir" -> "watchdir")
I have corrected this by using the pre-declared constants for these
folder names.
2023-11-26 05:32:22 +02:00
Christoph Heiss
4e08f16893
nixos/networkd: fix manpage for WireGuardPeer
config
...
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-11-26 00:43:55 +01:00
Felix Buehler
1b5617e25b
nixos/libvirtd: add netcat and support
...
see: https://github.com/NixOS/nixpkgs/issues/180806
2023-11-25 23:45:18 +01:00
nikstur
fa41730b86
nixos/switch-to-configuration: remove explicit tmpfiles invocation
2023-11-25 21:39:10 +01:00
LDprg
a0f5d5e500
nixos/preload: init
2023-11-25 20:07:10 +01:00
emilylange
1c404d2584
nixos/containers: warn if containers are used but disabled
...
This is a follow-up to 8dfe8e447e
.
2023-11-25 20:01:42 +01:00
Lassulus
b821ac8070
Merge pull request #267278 from Stunkymonkey/nixos-packages-docu-fix
...
nixos/nextcloud: fix docu of packages
2023-11-25 18:48:28 +01:00
Peder Bergebakken Sundt
2ca79e7f9d
nixos/ejabberd: ensure erlang cookie is made
...
Apply the same fix as found in `couchdb` and `rabbitmq`.
2023-11-25 15:41:42 +01:00
nicoo
bcc2d1238a
nixos/sudo-rs: Move support for pam_ssh_agent_auth(8)
to PAM's NixOS module
...
Similar to delroth's suggestion in #262790 .
2023-11-25 14:11:25 +00:00
nicoo
f5d059b1f5
nixos/sudo-rs: Clarify security.sudo-rs.enable
's description
2023-11-25 14:11:24 +00:00
nicoo
46aaa5be70
nixos/sudo-rs: Refactor option definitions
2023-11-25 14:11:24 +00:00
nicoo
03db94319a
nixos/sudo-rs: refactor processing of cfg.extraRules
2023-11-25 14:11:24 +00:00
nicoo
9b0a63c2fe
nixos/sudo-rs: Fix bug putting the wrong version of sudo in environment.systemPackages
2023-11-25 14:11:24 +00:00
nicoo
165b600f01
nixos/sudo-rs: Drop checks for sudo implementation
2023-11-25 14:11:23 +00:00
nicoo
cd42b18a2c
nixos/sudo-rs: uniformize ssh-agent auth behaviour with security.sudo
2023-11-25 14:11:23 +00:00
nicoo
b05648b541
nixos/sudo-rs: Simplify activation
2023-11-25 14:11:23 +00:00
Maciej Krüger
7b1e146a49
Merge pull request #266477 from duament/nixos-nat-nftables
...
nixos/nat: fix nat-nftables
2023-11-25 12:58:48 +01:00
Maciej Krüger
2819a35bf4
Merge pull request #265532 from ProminentRetail/git
2023-11-24 22:38:57 +01:00
ProminentRetail
2db2f446c2
nixos/git: add prompt.enable
2023-11-24 20:38:16 +01:00
Ryan Lahfa
58fdc495ed
Merge pull request #269452 from RaitoBezarius/zfs-superstable
2023-11-24 17:41:43 +01:00
Raito Bezarius
e04c0b0d99
zfs_2_1: init at 2.1.13
...
This re-introduces the old stable ZFS version we had in the past following
the many predicted issues of ZFS 2.2.x series, that is much more stable
than any further ZFS version at the moment.
I am also removing myself from maintenance of any further ZFS versions as I am
planning to quit ZFS maintenance at some point.
In the meantime, for users like me who depend on ZFS for critical operations, here is a ZFS version
that is known to work for LTS kernels.
2023-11-24 15:47:21 +01:00
Nick Cao
9ad7bc9180
Merge pull request #269613 from jpds/caddy-restart-sec-typo
...
nixos/caddy: Fixed RestartSec typo
2023-11-24 09:41:10 -05:00
Chris Marchesi
54020c36a2
nixos/xscreensaver: init module
...
This adds a NixOS module for XScreenSaver (from @aidalgol in #130218 ,
with a few updates).
The module:
* Installs XScreenSaver
* Sets up a suid wrapper for xscreensaver-auth
* Sets up a user service for xscreensaver
The suid wrapper should function correctly when xscreensaver is
installed via the derivation update in 40a00547b71.
Co-authored-by: Aidan Gauland <aidalgol@fastmail.net>
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-11-24 08:53:00 -03:00
Jonathan Davies
a1163912c2
nixos/caddy: Fixed RestartSec typo.
2023-11-24 11:03:32 +00:00
Jonas Heinrich
8f3f6a2a77
nixos/invoiceplane: Add settings option
2023-11-24 10:25:46 +00:00
happysalada
e5b0b76105
nixos/clamav: add fangfrisch updater
2023-11-24 09:09:46 +00:00
Robert Hensing
779e50580c
Merge pull request #224611 from srhb/kafka-settings-module
...
Kafka: Settings and KRaft support
2023-11-23 17:35:29 +01:00
Ryan Lahfa
d783b6040d
Merge pull request #269381 from YellowOnion/bcachefs
2023-11-23 16:53:22 +01:00
Yang, Bo
932441c86d
nixos/nvidia: load nvidia-uvm
kernel module via softdep
( #267335 )
2023-11-23 16:19:27 +01:00
Finn Behrens
a51ea9ca17
nixos: fix bcachefs filesystem with symlinks
2023-11-23 08:14:27 +01:00
Daniel Hill
34a58ce86f
bcachefs: fix lib.kernel.option miss use.
...
option is a function not a set.
2023-11-23 19:08:57 +13:00
sinanmohd
da35c07d23
nixos/seatd: add readiness notification
2023-11-23 13:50:14 +11:00
sinanmohd
9796cbb021
nixos/seatd: init
2023-11-23 13:50:14 +11:00
rewine
12fba79491
deepin: add v23 packages
2023-11-23 10:00:44 +08:00
rewine
245ae0f64f
services.deepin.app-services: add systemd service
...
https://github.com/linuxdeepin/dde-app-services/pull/45
2023-11-23 10:00:43 +08:00
Silvan Mosberger
bf01ec00a0
Merge pull request #250949 from ShamrockLee/apptainer-localstatedir
...
apptainer, singularity: use self-contained LOCALSTATEDIR by default
2023-11-23 01:37:54 +01:00
Florian Klink
ab21317170
Merge pull request #269280 from tazjin/nix-serve-unflaked
...
nixos/nix-serve: fix module compatibility with unflaked Nix
2023-11-22 23:24:50 +02:00
Vincent Ambo
b2f67d3f48
nixos/nix-serve: fix module compatibility with unflaked Nix
...
The option `extra-allowed-users` was introduced in Nix 2.4, and fails
config validation on Nix 2.3.
2023-11-23 00:03:31 +03:00
Martin Weinelt
754f40a5ff
Merge pull request #269277 from Artturin/restorepre
...
Revert "23.11 beta release"
2023-11-22 21:49:49 +01:00
Artturin
be6349fdee
Revert "23.11 beta release"
...
This line shouldn't be changed from pre to beta on master, only in the beta branch
https://nixos.github.io/release-wiki/Branch-Off.html#on-the-release-branch
This reverts commit dc7b3febf8
.
Revert "nixos/release: fix versionSuffix eval"
This reverts commit 625c450024
.
2023-11-22 22:39:48 +02:00
Andrew Morgan
54b7a39646
peertube: Clarify option descriptions of listenHttp
, listenWeb
, enableWebHttps
2023-11-22 21:15:36 +01:00
Reed Riley
ed84add157
nixos/starship: add comment describing why this uses a hardcoded path
2023-11-22 11:17:03 -08:00
Nick Cao
0840c28c43
Merge pull request #268991 from undefined-moe/mongodb-exporter
...
add prometheus-mongodb-exporter
2023-11-22 09:29:50 -05:00
nicoo
744b456b49
nixos/systemd: Mark down the options description
2023-11-22 10:49:51 +00:00
nicoo
3f5e19aaf3
nixos/systemd: Link manpages in options' description
2023-11-22 10:49:50 +00:00
nicoo
f1b17edaea
nixos/systemd: Refactor package
option
2023-11-22 10:49:50 +00:00
nicoo
aba2edda44
nixos/systemd: Refactor references to config.systemd
2023-11-22 10:49:50 +00:00
nicoo
667e7ca0bd
nixos/systemd: refactor option definitions
...
- factor out `config.systemd.`;
- remove `lib.mdDoc` no-op.
2023-11-22 10:49:50 +00:00
datafoo
480f5b14e3
nixos/syncoid: add possibility to use string type for sshKey options
...
The sshKey options do not need to be a valid path at build time. Using
string instead allow use case when the path is not known at build time
such as when using systemd credentials (e.g. `sshKey =
"\${CREDENTIALS_DIRECTORY}/zfs-replication_ed25519";`).
2023-11-22 10:57:58 +01:00
Sarah Brofeldt
cfe3ca1f2f
nixos/apache-kafka: Add manual chapter
2023-11-22 06:47:09 +01:00
Sarah Brofeldt
45f84cdfd5
nixos/apache-kafka: structured settings
...
- Use lazyAttrs (for config references) settings for main server.properties.
- Drop dangerous default for "log.dirs"
- Drop apache-kafka homedir; unused and confusing
- Support formatting kraft logdirs
2023-11-22 06:47:08 +01:00
happysalada
eb746540a9
nixos/clamav: run as clamav user not root
2023-11-22 03:08:30 +00:00
happysalada
ef6b8ff15a
nixos/clamav: use state and runtime directory
2023-11-22 03:08:30 +00:00
undefined
b46ec2c40f
nixos/prometheus-mongodb-exporter: init module
2023-11-22 09:42:27 +08:00
Lassulus
ac1a9af078
Merge pull request #267445 from RTUnreal/add-dynamic-pw-loading-factorio
...
factorio: add dynamic game-password and login credentials loading
2023-11-21 23:46:51 +01:00
RTUnreal
decdfde011
improve documentation of new options
2023-11-21 20:52:30 +01:00
Vladimír Čunát
35a3cb94c6
Merge #269032 : GNOME: 44 -> 45
2023-11-21 20:49:59 +01:00
RTUnreal
648ffcecae
fix some errors
2023-11-21 20:29:43 +01:00
figsoda
dc7b3febf8
23.11 beta release
...
Signed-off-by: figsoda <figsoda@pm.me>
2023-11-21 14:04:49 -05:00
ners
ed31e0235e
treewide: replace broken udev paths with systemd
2023-11-21 15:09:38 +01:00
Jan Tojnar
b32a490b14
nixos/gnome: Do not install Photos
...
829b9aacc5
2023-11-21 09:21:55 +01:00
Bobby Rong
9b4a846409
nixos/xdg/portal: Fix link to portals.conf documentation
...
The original url is now 404.
Let's keep this link in sync with the one in doc/manpage-urls.json.
2023-11-21 08:42:55 +01:00
Bobby Rong
fd788f9d1a
nixos/wayland: Add xdg.portal.config or xdg.portal.configPackages
...
See the changes in x-d-p 1.17 for details.
2023-11-21 08:42:17 +01:00
Bobby Rong
39a1279b4d
nixos/desktop-managers: Add xdg.portal.config or xdg.portal.configPackages
...
See the changes in x-d-p 1.17 for details.
2023-11-21 08:42:17 +01:00
Bobby Rong
d7a8877d9d
nixos/xdg/portal: Add config and configPackages option
...
In x-d-p 1.17, when no configs are given, you apps will likely not
able to find a backend. Let users aware of the changes.
2023-11-21 08:42:10 +01:00
Bobby Rong
511d457142
nixos/gnome: Replace eog with loupe
...
ad3b4ca520
Acked-by: Jan Tojnar <jtojnar@gmail.com>
2023-11-21 08:41:54 +01:00
Bobby Rong
14fb201c7c
nixos/gnome: Replace cheese with snapshot
...
f2b0abe388
Acked-by: Jan Tojnar <jtojnar@gmail.com>
2023-11-21 08:41:50 +01:00
Bobby Rong
3bdcdae69d
gnome.gnome-initial-setup: 44.0 → 45.beta
...
https://gitlab.gnome.org/GNOME/gnome-initial-setup/-/compare/44.0...45.beta
Install dconf presets: 0c607f104e
Use tecla: 3dcb8709ba
Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com>
Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
2023-11-21 08:41:32 +01:00
John Chadwick
412543ddd8
nixos/libvirtd: add support for nss modules
2023-11-21 01:39:02 -05:00
Atemu
cfe0155154
Merge pull request #268324 from Janik-Haag/nixos-firewall-tool
...
nixos/firewall: install nixos-firewall-tool for iptables by default
2023-11-20 23:23:24 +01:00
Jonas Chevalier
c57a434386
maintainers: remove the numtide team ( #268684 )
...
It doesn't really make sense for us as team members are focused on
different things. At the end of the day it's the individuals that do the
work.
2023-11-20 22:27:26 +01:00
Ryan Lahfa
5d08323dda
Merge pull request #268717 from SuperSandro2000/patch-2
2023-11-20 19:05:01 +01:00
Nick Cao
90ef10b571
Merge pull request #253918 from tie/centrifugo
...
centrifugo: init at 5.1.1
2023-11-20 08:59:54 -05:00
Sandro Jäckel
515ce669bc
nixos/postgresql: point doc link to current like all others
2023-11-20 14:44:23 +01:00
Sandro
809f926017
nixos/postgresql: fix mentioned settings in ensurePermissions warnings
2023-11-20 14:42:57 +01:00