nixpkgs/nixos/tests
Oliver Schmidt e362fe9c6d security/acme: limit concurrent certificate generations
fixes #232505

Implements the new option `security.acme.maxConcurrentRenewals` to limit
the number of certificate generation (or renewal) jobs that can run in
parallel. This avoids overloading the system resources with many
certificates or running into acme registry rate limits and network
timeouts.

Architecture considerations:
- simplicity, lightweight: Concerns have been voiced about making this
  already rather complex module even more convoluted. Additionally,
  locking solutions shall not significantly increase performance and
  footprint of individual job runs.
  To accomodate these concerns, this solution is implemented purely in
  Nix, bash, and using the light-weight `flock` util. To reduce
  complexity, jobs are already assigned their lockfile slot at system
  build time instead of dynamic locking and retrying. This comes at the
  cost of not always maxing out the permitted concurrency at runtime.
- no stale locks: Limiting concurrency via locking mechanism is usually
  approached with semaphores. Unfortunately, both SysV as well as
  POSIX-Semaphores are *not* released when the process currently locking
  them is SIGKILLed. This poses the danger of stale locks staying around
  and certificate renewal being blocked from running altogether.
  `flock` locks though are released when the process holding the file
  descriptor of the lock file is KILLed or terminated.
- lockfile generation: Lock files could either be created at build time
  in the Nix store or at script runtime in a idempotent manner.
  While the latter would be simpler to achieve, we might exceed the number
  of permitted concurrent runs during a system switch: Already running
  jobs are still locked on the existing lock files, while jobs started
  after the system switch will acquire locks on freshly created files,
  not being blocked by the still running services.
  For this reason, locks are generated and managed at runtime in the
  shared state directory `/var/lib/locks/`.

nixos/security/acme: move locks to /run

also, move over permission and directory management to systemd-tmpfiles

nixos/security/acme: fix some linter remarks in my code

there are some remarks left for existing code, not touching that

nixos/security/acme: redesign script locking flow

- get rid of subshell
- provide function for wrapping scripts in a locked environment

nixos/acme: improve visibility of blocking on locks

nixos/acme: add smoke test for concurrency limitation

heavily inspired by m1cr0man

nixos/acme: release notes entry on new concurrency limits

nixos/acme: cleanup, clarifications
2023-09-09 20:13:18 +02:00
..
common nixos/tests/lxd: move into subdir, use minimal init, remove sleeps 2023-08-17 21:02:08 -04:00
dnscrypt-wrapper nixos/tests/dnscrypt-wrapper: fix flakyness 2023-07-28 11:59:36 +02:00
fcitx5 nixosTests.fcitx5: make use of the newly added settings option 2023-08-15 08:36:07 +08:00
garage garage: 0.8.0 -> 0.8.1 2023-03-13 13:55:36 +01:00
git
google-oslogin nixosTests.google-oslogin: fix tests, provide group mock endpoint 2023-02-05 20:52:23 +01:00
grafana nixos/tests/grafana/provision: fix test 2023-01-29 16:50:56 +01:00
hadoop nixos/tests/hadoop/hdfs.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
hitch
hocker-fetchdocker
hydra treewide: makeWrapper to nativeBuildInputs 2022-09-26 17:53:26 +03:00
initrd-network-openvpn systemd-initrd: OpenVPN 2023-04-17 16:41:35 -04:00
initrd-network-ssh nixos/tests/initrd-network-ssh/default.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
installed-tests upower: Add installed tests 2023-07-13 19:12:22 +02:00
installer nixos: Add nixos.channel.enable 2023-07-07 19:00:06 +02:00
k3s k3s: symlinks for kubectl crictl & ctr 2023-07-09 20:40:36 +02:00
kerberos krb5Full: turn into alias 2022-12-08 23:08:44 +01:00
krb5 krb5Full: turn into alias 2022-12-08 23:08:44 +01:00
kubernetes nixos/dnsmasq: Use attrs instead of plain text config 2022-12-04 23:08:37 +00:00
lorri nixos/tests: Add names 2022-09-24 17:38:09 +01:00
lvm2 nixos/tests/lvm2/thinpool: fix xfs creation on older kernels 2023-06-09 13:44:48 +02:00
lxd nixos/tests/lxd: disable virtual-machine test on aarch64 2023-09-05 15:28:00 +00:00
maddy nixos/maddy: Add tls option 2023-05-01 19:12:26 +02:00
matrix nixos/tests/matrix-synapse: Test redis on postgres instance 2023-07-18 17:53:29 +02:00
mysql nixosTests.mysql-replication: fix deprecation warning 2023-05-10 18:22:41 +02:00
nextcloud nixos/tests/nextcloud: Fix deprecation warning 2023-08-09 16:57:57 +02:00
nfs Merge pull request #229030 from atorres1985-contrib/with-lib-is-bad 2023-05-17 20:24:46 -03:00
nginx-proxyprotocol nixos/tests/nginx-proxyprotocol: add raitobezarius as a maintainer 2023-07-21 21:13:28 +02:00
nixops nixops_unstable: Fix tests attribute 2023-08-09 15:47:13 +02:00
nixos-test-driver nixos/tests/nixos-test-driver/busybox: Improve name 2023-07-18 15:08:31 +02:00
pam nixos/pam: add test for ZFS home dataset unlocking 2023-05-15 09:22:42 +02:00
parsedmarc elasticsearch-oss: remove 2023-04-04 10:32:26 +02:00
php php8*: disable PCRE2 JIT SEAlloc to avoid crashes when forking 2022-11-30 13:22:39 +01:00
podman nixos/tests/podman: add zfs to rootful test 2023-02-28 18:08:29 +10:00
shadowsocks nixos/shadowsocks: wait for nginx to prevent race condition 2023-05-26 11:24:21 +02:00
spark nixosTests.spark: give worker node 2G of memory 2022-10-08 11:55:51 +01:00
stratis nixosTests.stratis.simple: enlarge disk size to avoid test hanging due 2023-01-25 08:58:41 +08:00
tinc
web-apps Merge pull request #246354 from minijackson/netbox-fixes 2023-08-21 16:22:38 -04:00
web-servers nixosTests.agate: switch to using gemget 2023-08-16 01:26:54 +04:00
wireguard nixos/wireguard: fix mtu after switching netns. 2023-03-04 18:51:12 +00:00
xmpp nixosTests/prosody[-mysql]: fix tests TLS setup 2022-11-23 11:05:12 +01:00
3proxy.nix nixos/tests/3proxy.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
aaaaxy.nix aaaaxy: 1.3.538 -> 1.4.2 2023-06-01 20:14:33 +02:00
acme-dns.nix nixosTests.acme-dns: init 2023-05-31 15:08:39 +02:00
acme.nix security/acme: limit concurrent certificate generations 2023-09-09 20:13:18 +02:00
adguardhome.nix nixos/adguardhome: Add allowDHCP option 2023-06-15 12:27:35 +02:00
aesmd.nix nixos/aesmd: add option environment 2022-12-04 20:12:50 +01:00
agda.nix
airsonic.nix nixosTests.airsonic: fix failure (type error) 2022-07-19 19:05:20 +02:00
akkoma.nix nixos/tests/akkoma: Disable retrieving timeline 2023-09-05 12:26:33 +02:00
alice-lg.nix nixos/alice-lg: init 2023-05-15 02:52:06 +02:00
all-terminfo.nix
all-tests.nix Merge pull request #253739 from mweinelt/firefox-102-removal 2023-09-09 19:25:42 +02:00
alps.nix maintainers: remove and add hmenke 2022-12-03 12:26:58 +01:00
amazon-init-shell.nix
anbox.nix nixos/tests/anbox: init 2023-09-05 10:09:45 +02:00
anuko-time-tracker.nix nixos/anuko-time-tracker: init 2023-06-27 12:30:33 +02:00
apache_datasketches.nix apache_datasketches: init at 1.6.0 2023-06-02 21:03:19 +02:00
apcupsd.nix nixos/tests/apcupsd.nix: init 2023-01-04 21:45:58 +01:00
apfs.nix nixos/tests/apfs: clean up code 2023-06-05 16:39:09 +02:00
apparmor.nix nixosTests.apparmor: fix expected.rules 2023-05-24 19:17:29 +02:00
appliance-repart-image.nix nixos/tests/appliance-repart-image: init 2023-07-26 23:33:33 +02:00
atd.nix
atop.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
atuin.nix nixos/atuin: fix database.createLocally behaviour 2023-08-01 18:17:37 +08:00
auth-mysql.nix nixos/mysql-auth: add VM-Test 2022-08-06 19:43:34 +02:00
authelia.nix authelia: move module under security and minor fixes 2023-03-27 12:00:07 +01:00
avahi.nix
babeld.nix
bazarr.nix nixos/tests/bazarr.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
bcachefs.nix nixos/test/bcachefs: fix password input 2023-07-01 17:10:11 +02:00
beanstalkd.nix
bees.nix
binary-cache.nix nixos/tests/binary-cache.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
bind.nix
bird.nix
birdwatcher.nix nixos/birdwatcher: init 2023-05-15 02:52:06 +02:00
bitcoind.nix
bittorrent.nix
blockbook-frontend.nix
blocky.nix
boot-stage1.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
boot.nix
bootspec.nix nixos/bootspec: adopt the merged RFC-0125 2023-04-28 18:26:11 -07:00
borgbackup.nix services.openssh: support freeform settings (#193757) 2023-01-15 16:32:46 +01:00
botamusique.nix
bpf.nix nixosTests.bpf: disable kfunc test on aarch64 2023-05-06 06:40:30 +09:00
bpftune.nix nixos/bpftune: drop flaky tests 2023-07-18 16:58:37 +08:00
breitbandmessung.nix
brscan5.nix
btrbk-doas.nix btrbk: add doas variant of module test 2022-11-19 23:16:57 +01:00
btrbk-no-timer.nix
btrbk-section-order.nix nixos/btrbk: fix ordering of subsections and refactor 2022-10-24 08:52:25 +08:00
btrbk.nix services.openssh: support freeform settings (#193757) 2023-01-15 16:32:46 +01:00
budgie.nix nixosTests.budgie: Re-add checks for budgie-wm 2023-08-16 23:33:52 +08:00
buildbot.nix buildbot: move out of python3.pkgs 2023-04-11 12:38:58 +02:00
buildkite-agents.nix nixos/tests/buildkite-agents.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
caddy.nix Merge pull request #244626 from Sohalt/caddy-rfc42 2023-08-23 20:36:46 +02:00
cadvisor.nix nixos/tests/cadvisor.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
cage.nix treewide: rename fonts.fonts to fonts.packages 2023-07-24 17:34:39 +02:00
cagebreak.nix nixos/tests/cagebreak: Enable just polkit instead of udisks2 2022-09-03 14:11:58 +02:00
calibre-server.nix services/calibre-server: Add new http & auth options (#216497) 2023-06-28 14:06:47 +02:00
calibre-web.nix nixos/tests/calibre-web.nix: get rid of with lib 2023-05-12 22:29:25 -03:00
cassandra.nix
ceph-multi-node.nix
ceph-single-node-bluestore.nix
ceph-single-node.nix ceph: enable dashboard in nixos test 2023-01-20 23:59:26 +01:00
certmgr.nix
cfssl.nix
cgit.nix nixos/cgit: add package option 2023-01-31 12:13:56 +01:00
charliecloud.nix
chromium.nix nixos/tests/chromium: Re-enable the chrome://gpu test for M107 2022-11-06 21:48:57 +01:00
chrony-ptp.nix chrony: add gkleen as maintainer for nixos test for ptp_kvm 2023-01-31 10:08:32 -06:00
chrony.nix nixos/chrony: add simple test 2023-08-10 03:04:04 +02:00
cinnamon.nix nixos/tests/cinnamon: silence a warning and remove unused args 2023-06-02 19:51:12 +08:00
cjdns.nix
clickhouse.nix treewide: remove ma27 from a bunch of packages (again) 2023-03-03 21:25:26 +01:00
cloud-init-hostname.nix nixos/cloud-init: fix hostname and resolvconf configuration 2022-10-27 08:07:48 +02:00
cloud-init.nix nixos/cloud-init: fix hostname and resolvconf configuration 2022-10-27 08:07:48 +02:00
cloudlog.nix nixos/cloudlog: init 2023-01-23 22:41:07 +00:00
cntr.nix
cockpit.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
cockroachdb.nix nixos: fix typos 2022-12-17 19:31:14 -05:00
code-server.nix nixos/code-server: init tests 2023-05-26 09:51:33 +02:00
coder.nix nixos/coder: init module 2023-02-06 13:15:00 +01:00
collectd.nix
connman.nix nixos/tests/connman: init 2023-01-30 07:48:51 +01:00
consul-template.nix nixosTests.consul-template: init 2023-04-25 16:54:08 +02:00
consul.nix nixos/tests/consul: stop consul cleanly 2023-03-22 19:18:34 +01:00
containers-bridge.nix
containers-custom-pkgs.nix treewide: rename maintainer earvstedt -> erikarvstedt 2022-06-26 19:12:18 +02:00
containers-ephemeral.nix
containers-extra_veth.nix
containers-hosts.nix
containers-imperative.nix treewide: pass system argument to eval-config.nix 2023-05-12 14:56:23 +02:00
containers-ip.nix
containers-macvlans.nix
containers-names.nix
containers-nested.nix
containers-physical_interfaces.nix
containers-portforward.nix
containers-reloadable.nix
containers-restart_networking.nix
containers-tmpfs.nix
containers-unified-hierarchy.nix nixos-container: force systemd-nspawn to use unified cgroups hierarchy 2022-11-06 17:12:02 +01:00
convos.nix nixos/tests/convos.nix: get rid of with lib 2023-05-12 22:29:25 -03:00
corerad.nix nixos/tests: Add names 2022-09-24 17:38:09 +01:00
coturn.nix nixosTests.coturn: wait_for_open_port 2023-06-13 23:21:37 +02:00
couchdb.nix nixos/tests/couchdb.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
cri-o.nix nixos/tests/cri-o: Fix maintainers 2022-09-24 17:38:10 +01:00
croc.nix
cups-pdf.nix treewide: rename fonts.fonts to fonts.packages 2023-07-24 17:34:39 +02:00
curl-impersonate.nix nixosTests.curl-impersonate: init 2023-07-21 14:37:48 -04:00
custom-ca.nix nixosTests.custom-ca: resolve out of memory situations 2023-09-04 14:34:21 +02:00
dae.nix nixos/dae: add basic test 2023-09-03 03:06:52 +08:00
darling.nix llvmPackages_latest: move to aliases.nix 2023-05-08 13:05:33 +00:00
dconf.nix nixos/dconf: add locks support 2023-08-15 19:20:39 +08:00
deepin.nix nixos/tests/deepin.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
deluge.nix nixos/tests/deluge: fix test 2022-11-20 00:35:59 +01:00
dex-oidc.nix
dhparams.nix nixosTests.dhparams: fix with openssl3 2022-11-11 02:55:54 +01:00
disable-installer-tools.nix
discourse.nix discourse.tests: nodes.discourse.config -> nodes.discourse 2023-02-09 17:36:42 +01:00
dnscrypt-proxy2.nix nixos/dnsmasq: Use attrs instead of plain text config 2022-12-04 23:08:37 +00:00
dnsdist.nix
doas.nix nixos/tests/doas.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
docker-registry.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
docker-rootless.nix
docker-tools-cross.nix dockerTools.buildImage: Add copyToRoot to replace contents, explain usage 2022-07-06 07:30:24 +02:00
docker-tools-overlay.nix
docker-tools.nix dockerTools: Specify 'latest' tag for repeated layer test image 2023-02-06 12:18:23 -06:00
docker.nix virtualisation.docker: require docker.service for docker-prune.service 2022-09-24 10:42:00 +02:00
documize.nix or consistency use bob in tests instead of john 2022-08-05 13:27:03 +02:00
doh-proxy-rust.nix nixos/tests/doh-proxy-rust.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
dokuwiki.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
dolibarr.nix nixos/tests/dolibarr: use -X GET instead -X POST to test for redirection 2023-08-26 13:44:19 +02:00
domination.nix nixosTests.domination: fix the test 2022-10-15 14:05:47 +02:00
dovecot.nix
drbd.nix
early-mount-options.nix nixosTests.early-mount-options: init 2023-04-25 13:07:08 +02:00
earlyoom.nix
ec2.nix nixos/ec2: remove paravirtualization-specific code 2022-11-23 17:18:18 +01:00
ecryptfs.nix
elk.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
emacs-daemon.nix
empty-file
endlessh-go.nix nixos/endlessh-go: init module 2022-09-23 23:55:54 +03:00
endlessh.nix nixos/endlessh: init module 2022-10-22 16:07:52 +03:00
engelsystem.nix
enlightenment.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
env.nix
envfs.nix envfs: init at 1.0.0 2022-12-28 16:03:49 +01:00
envoy.nix nixos/envoy: add option requireValidConfig to make config validation errors non-fatal 2023-02-11 18:21:21 +01:00
ergo.nix
ergochat.nix
eris-server.nix nixos/eris-server: init 2023-07-29 11:56:58 +01:00
esphome.nix nixos/tests/esphome.nix: get rid of with lib 2023-05-12 22:29:27 -03:00
etcd-cluster.nix etcd: switch to etcd_3_5 2023-05-28 08:04:43 +10:00
etcd.nix etcd: switch to etcd_3_5 2023-05-28 08:04:43 +10:00
etebase-server.nix
etesync-dav.nix
evcc.nix evcc: 0.117.4 -> 0.118.0 2023-06-11 12:41:53 +02:00
fail2ban.nix nixos/fail2ban: use attrsets for settings instead of strings 2023-06-30 22:27:40 +02:00
fakeroute.nix nixos/tests/fakeroute: init 2023-06-20 01:12:04 +00:00
fancontrol.nix
fenics.nix
ferm.nix
firefox.nix nixos/tests/firefox: use pname to identify tested package 2022-08-06 11:36:37 +02:00
firejail.nix
firewall.nix nixos/{firewall, nat}: add a nftables based implementation 2022-12-23 00:49:24 +08:00
fish.nix
flannel.nix
fluentd.nix
fluidd.nix nixos/tests/fluidd.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
fontconfig-default-fonts.nix nixos/fonts: rename fonts.enableDefaultFonts to fonts.enableDefaultPackages 2023-07-25 00:55:25 +02:00
freenet.nix nixosTests.freenet: init 2022-11-30 12:15:00 +01:00
freeswitch.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
freshrss-http-auth.nix nixos/freshrss: authType option 2023-07-19 19:43:55 -05:00
freshrss-pgsql.nix nixos/freshrss: fix permissions and add database test 2023-01-06 21:16:50 +01:00
freshrss-sqlite.nix nixos/freshrss: fix permissions and add database test 2023-01-06 21:16:50 +01:00
frigate.nix nixos/tests/frigate: init 2023-05-22 16:29:55 +02:00
frr.nix
fsck.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
fscrypt.nix nixos/pam: support fscrypt login protectors 2022-11-11 15:37:39 +01:00
ft2-clone.nix nixosTests.ft2-clone: make OCR more robust 2023-04-21 15:35:20 +02:00
gemstash.nix nixos/gemstash: init module 2023-03-07 15:56:56 +11:00
gerrit.nix
geth.nix nixos/geth: fix failing test 2023-05-09 20:35:28 +02:00
ghostunnel.nix nixos/tests: Add names 2022-09-24 17:38:09 +01:00
gitdaemon.nix
gitea.nix nixos/tests/gitea: Test actions runner registration 2023-07-28 19:51:41 +02:00
github-runner.nix nixos/tests/github-runner: init 2023-02-26 15:39:19 +01:00
gitlab.nix nixosTests.gitlab: fix project ids 2023-05-31 22:14:25 +02:00
gitolite-fcgiwrap.nix
gitolite.nix
glusterfs.nix
gnome-flashback.nix nixos/tests/gnome-flashback: skip graphical-session.target check 2023-08-03 09:52:12 +08:00
gnome-xorg.nix nixos/tests/gnome-xorg.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
gnome.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
gnupg.nix nixos/tests/gnupg: init 2023-02-07 08:47:14 +01:00
go-neb.nix
gobgpd.nix
gocd-agent.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
gocd-server.nix
gollum.nix nixos/gollum: fix deprecation warning 2023-03-20 18:26:48 +01:00
gonic.nix nixos/gonic: init 2023-05-07 22:43:23 +02:00
gotify-server.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
grafana-agent.nix nixos/tests/grafana-agent: update port 2022-06-19 12:23:06 +02:00
graphite.nix nixos: fix typos 2022-12-17 19:31:14 -05:00
graylog.nix elasticsearch-oss: remove 2023-04-04 10:32:26 +02:00
grocy.nix nixos/grocy: add a basic smoke test for file uploads 2022-11-30 22:18:05 -08:00
grub.nix
guacamole-server.nix nixos/guacamole-server: init 2023-06-21 22:11:44 +02:00
gvisor.nix
haka.nix
haproxy.nix nixos/tests/haproxy: stop using nixos/profiles/minimal 2023-02-27 17:56:56 +01:00
hardened.nix nixos/tests/hardened.nix: get rid of with lib 2023-05-12 22:29:25 -03:00
harmonia.nix nixos/tests/harmonia: check if settings work 2023-05-11 18:03:14 +03:00
haste-server.nix
hbase.nix nixos/hadoop: add HBase submodule 2022-08-07 21:21:45 +02:00
hddfancontrol.nix nixos/hddfancontrol: initial module & test 2023-08-23 13:25:29 -04:00
headscale.nix nixos/tests/headscale: test improvements 2023-05-21 01:37:06 -03:00
hedgedoc.nix nixos/hedgedoc: convert to settings-style configuration 2022-07-10 08:07:14 -05:00
herbstluftwm.nix
hibernate.nix nixos/tests/hibernate: Simplify and always set resumeDevice 2023-07-29 14:21:28 -04:00
hledger-web.nix
hockeypuck.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
home-assistant.nix nixos/tests/home-assistant: Drop esphome, fix post-restart expectation 2023-06-07 23:55:51 +02:00
homepage-dashboard.nix tests/homepage-dashboard: add tests for homepage 2023-07-13 09:38:27 +01:00
honk.nix nixos/modules/honk: init 2023-08-27 23:43:40 +02:00
hostname.nix nixosTests.hostname: stop using deprecated nodes.machine.config 2023-03-07 13:29:19 +01:00
hound.nix
i3wm.nix
icingaweb2.nix
iftop.nix nixos/tests/iftop.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
image-contents.nix nixos/make-disk-image: fix contents dir paths 2023-04-16 09:54:45 -07:00
incron.nix
influxdb.nix
influxdb2.nix nixos/influxdb2: add org, bucket, users and auth provisioning 2023-08-23 14:46:52 +02:00
initrd-luks-empty-passphrase.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
initrd-network.nix
initrd-secrets-changing.nix nixos/virtualisation/qemu-vm: remove persistBootDevice option 2023-04-21 13:00:19 +02:00
initrd-secrets.nix
input-remapper.nix
inspircd.nix
installer-systemd-stage-1.nix nixos/swraid: make entire module optional 2023-07-10 16:39:35 +02:00
installer.nix nixos/tests/installer: fix after #244449 2023-07-21 10:36:29 +03:00
invidious.nix
invoiceplane.nix nixos/invoiceplane: Enable clean url 2022-11-09 08:17:52 -05:00
iodine.nix
ipv6.nix
iscsi-multipath-root.nix
iscsi-root.nix
isso.nix remove myself as maintainer for now as I switched to another distro 2023-02-25 18:56:02 +01:00
jackett.nix nixos/tests/jackett.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
jellyfin.nix nixos/tests/jellyfin: fix type errors in test script 2022-06-13 21:58:48 +02:00
jenkins-cli.nix
jenkins.nix nixos/tests/jenkins: fix deprecation warning 2023-07-27 15:18:11 +02:00
jibri.nix nixos/tests/jibri: remove grep for obsolete videobridge health check 2022-11-03 17:00:45 -04:00
jirafeau.nix nixos/tests/jirafeau.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
jitsi-meet.nix nixos/tests/jitsi-meet: remove grep for successfull health check 2022-06-29 00:32:53 +02:00
jool.nix nixos/tests/jool: update for module changes 2023-09-04 18:38:25 +02:00
kafka.nix apacheKafka: 3.5.0, 3.4.1, 3.3.1 -> 3.3.2 2023-06-30 17:59:40 +02:00
kanidm.nix kanidm: 1.1.0-alpha.12 -> 1.1.0-beta.13 2023-08-01 17:13:58 +02:00
karma.nix nixos/karma: init 2022-10-10 10:46:25 +05:30
kavita.nix nixos/tests/kavita: init 2023-05-06 13:57:53 -03:00
kbd-setfont-decompress.nix
kbd-update-search-paths-patch.nix
kea.nix nixos/tests/kea: Test dhcp-ddns against knot 2023-03-11 22:23:09 +01:00
keepalived.nix
keepassxc.nix keepassxc: fix test timeout 2023-02-21 09:29:23 +01:00
kernel-generic.nix kernel: fix passthru.tests 2023-08-06 15:47:54 +02:00
kernel-latest-ath-user-regd.nix
keter.nix nixos/keter: 2.0 -> 2.1 2023-06-14 11:54:03 -04:00
kexec.nix nixosTests.kexec: do not use module argument config 2023-06-16 19:43:40 +02:00
keycloak.nix nixos/keycloak: Escape database password properly 2022-11-03 14:15:53 +01:00
keyd.nix nixos/keyd: add support for multi-file configuration 2023-07-15 11:33:41 +03:00
keymap.nix nixos/tests/keymap: add custom layouts test 2023-07-18 17:07:19 +02:00
knot.nix nixos/tests/knot: Use more appropriate terminology 2023-03-11 22:23:10 +01:00
komga.nix nixos/tests/komga.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
ksm.nix
kthxbye.nix nixos/kthxbye: init 2022-09-26 00:16:03 +05:30
kubo.nix nixos/kubo: restrict access to the API to users in a group by default 2023-04-15 15:25:20 +02:00
ladybird.nix nixosTests.ladybird: init 2022-09-26 17:04:52 +02:00
languagetool.nix nixos/service/languagetool: init 2022-09-03 16:48:43 +02:00
leaps.nix
legit.nix nixos/tests/legit: init 2023-05-27 16:20:05 +00:00
lemmy.nix nixos/lemmy: limit impurity by secrets 2023-07-28 07:49:27 +00:00
libinput.nix
libreddit.nix nixos/tests/libreddit.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
libresprite.nix
libreswan.nix nixos/tests/libreswan: attempt to fix flakiness 2023-03-04 20:06:32 +01:00
libuiohook.nix libuiohook: init at 1.2.2 2022-07-17 16:21:25 -04:00
libvirtd.nix nixos/libvirtd: add support for nixos managed libvirt hooks 2023-05-19 12:46:07 +02:00
lidarr.nix nixos/tests/lidarr.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
lightdm.nix
lighttpd.nix nixos: add lighttpd test 2022-07-26 04:45:03 +02:00
limesurvey.nix
listmonk.nix listmonk: revamp the tests 2023-08-23 00:25:47 +02:00
litestream.nix
lldap.nix nixosTests.lldap: init 2023-04-29 21:14:25 +02:00
locate.nix
login.nix nixos/test-driver: remove allow_reboot state from Machine, make it a start() kwarg 2023-03-16 01:50:15 +01:00
logrotate.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
loki.nix
luks.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
lxd-image-server.nix nixos/tests/lxd: move into subdir, use minimal init, remove sleeps 2023-08-17 21:02:08 -04:00
maestral.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
magic-wormhole-mailbox-server.nix
magnetico.nix
mailcatcher.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
mailhog.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
mailman.nix nixosTests.mailman: init 2023-05-19 12:03:41 +02:00
make-test-python.nix nixos/tests: Make pure 2022-11-26 11:52:51 +01:00
man.nix
mate.nix nixos/tests/mate: init 2023-01-08 23:57:34 +08:00
matomo.nix matomo: 4.10.1 -> 4.14.2 2023-06-13 07:36:07 -04:00
mattermost.nix mattermost: add environmentFile option to allow declarative secrets 2023-03-27 20:46:01 +02:00
mediamtx.nix nixos/tests/mediamtx: init 2023-08-10 20:43:26 +02:00
mediatomb.nix nixos/tests/mediatomb: fix test when running with gerbera 2022-09-05 17:06:54 +02:00
mediawiki.nix nixos/mediawiki: also test fcgi socket 2023-05-01 20:51:11 +02:00
meilisearch.nix nixos/meilisearch: Update tests to reflect API changes 2022-08-24 22:00:26 -04:00
memcached.nix
merecat.nix nixos/merecat: init 2022-10-31 09:24:28 +01:00
metabase.nix
mimir.nix
mindustry.nix nixosTests.mindustry: init 2023-01-15 13:11:37 +01:00
minecraft-server.nix nixos/minecraft-server: optimize world generation inside test 2022-08-26 23:22:52 -04:00
minecraft.nix
minidlna.nix nixos/minidlna: fix tests 2022-09-04 09:07:40 +00:00
miniflux.nix nixos/miniflux: add apparmor policy 2023-07-13 11:10:39 +02:00
minio.nix nixosTests/minio: format with nixpkgs-fmt 2023-03-13 18:01:16 -07:00
miriway.nix treewide: rename fonts.fonts to fonts.packages 2023-07-24 17:34:39 +02:00
misc.nix nixos/tests/misc.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
mobilizon.nix mobilizon: init at 3.1.3 2023-09-07 08:59:40 +00:00
mod_perl.nix
molly-brown.nix
mongodb.nix mongodb-4_2: drop 2023-06-06 14:26:11 +03:00
moodle.nix nixosTests.moodle: increase timeout 2022-09-02 18:09:00 +00:00
moonraker.nix
moosefs.nix
morty.nix
mosquitto.nix nixos/mosquitto: use networkd for tests 2023-05-09 11:41:17 +02:00
mpd.nix
mpich-example.c
mpv.nix nixos/tests/mpv.nix: get rid of with lib 2023-05-12 22:29:28 -03:00
mtp.nix
multipass.nix nixos/tests/multipass: init 2023-02-04 07:44:04 +00:00
mumble.nix nixos/murmur: add apparmor policy 2023-07-13 11:11:01 +02:00
munin.nix
musescore.nix musescore: 3.6.2 -> 4.0.1 2023-02-02 15:33:00 +02:00
mutable-users.nix
mxisd.nix
n8n.nix nixos/n8n: add test for webhookUrl configuration 2023-07-07 16:20:03 +01:00
nagios.nix
nar-serve.nix nixos/tests/nar-serve: Fix 2023-05-25 19:10:22 -07:00
nat.nix nixos/tests/nat: remove conntrack helpers test 2023-03-04 10:53:48 +03:00
nats.nix
navidrome.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
nbd.nix
ncdns.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
ndppd.nix
nebula.nix nixos/nebula: fix potential address collision in tests 2023-02-04 16:59:19 -08:00
neo4j.nix nixos/neo4j: fix typo 2022-08-12 15:45:48 -07:00
netbird.nix nixosTests.netbird: init 2022-08-22 16:37:43 +03:00
netdata.nix netdata: set NETDATA_PIPENAME to /run/netdata/ipc 2023-08-05 18:19:08 +08:00
networking-proxy.nix nixos: fix typos 2022-12-17 19:31:14 -05:00
networking.nix nixos/tests/networking/caseSensitiveRenaming: fix bash syntax 2023-08-04 14:38:08 +02:00
nexus.nix
nghttpx.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
nginx-auth.nix dont use common names as password in test 2022-08-05 14:35:10 +02:00
nginx-etag.nix nixos/tests/nginx: fix nginx-etag test 2022-07-29 20:31:43 +03:00
nginx-globalredirect.nix nginx: make global redirect vhost option accept exceptions 2022-12-18 12:21:27 +01:00
nginx-http3.nix nixos/tests: update nginx-http3 test 2023-05-28 19:55:00 +03:00
nginx-modsecurity.nix nginx: detect duplicate modules 2022-12-16 01:57:14 +01:00
nginx-njs.nix nginxModules.njs: init at 0.7.8 2022-11-05 21:40:57 +01:00
nginx-pubhtml.nix
nginx-sandbox.nix
nginx-sso.nix
nginx-status-page.nix nixos/nginx: add test for status page 2023-07-28 20:29:09 +02:00
nginx-variants.nix
nginx.nix nixos/tests/nginx: fix etag test flakiness 2023-05-10 05:01:50 +02:00
nitter.nix
nix-ld.nix nix-ld: 1.2.1 -> 1.2.2 (#237962) 2023-06-20 20:23:27 +00:00
nix-serve-ssh.nix
nix-serve.nix
nixos-generate-config.nix
nixos-rebuild-specialisations.nix nixosTests.nixos-rebuild-specialisations: Fix 2023-06-10 18:25:04 +02:00
node-red.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
nomad.nix
non-default-filesystems.nix nixos/tests: add myself to maintainers of erofs test 2023-07-10 22:02:36 +02:00
noto-fonts-cjk-qt-default-weight.nix nixos/fonts: rename fonts.enableDefaultFonts to fonts.enableDefaultPackages 2023-07-25 00:55:25 +02:00
noto-fonts.nix nixos/fonts: rename fonts.enableDefaultFonts to fonts.enableDefaultPackages 2023-07-25 00:55:25 +02:00
novacomd.nix
nscd.nix nixos/nscd: use nsncd by default 2023-02-02 11:07:25 +01:00
nsd.nix
ntfy-sh.nix nixos/ntfy-sh: use dynamic user and add defaults 2023-06-02 15:22:14 -04:00
nzbget.nix nixosTests.nzbget: fix deprecation warning 2023-05-13 20:05:06 -04:00
nzbhydra2.nix nixos/tests/nzbhydra2.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
oci-containers.nix nixos/tests/oci-containers.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
octoprint.nix octoprint: add nixosTests 2023-01-29 05:40:28 +01:00
odoo.nix odoo15: init at 15.0-20230720 2023-08-27 09:52:43 +02:00
oh-my-zsh.nix
ombi.nix nixos/tests/ombi.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
openarena.nix
openldap.nix nixosTests.openldap: fix deprecation warning 2023-02-15 14:13:23 +01:00
openresty-lua.nix
opensearch.nix nixos/opensearch: Use DynamicUser and StateDirectory by default 2023-02-15 16:38:24 +00:00
opensmtpd-rspamd.nix
opensmtpd.nix
opensnitch.nix nixos/opensnitch: add test 2023-08-13 17:49:19 +02:00
openssh.nix
openstack-image.nix
opentabletdriver.nix
opentelemetry-collector.nix nixos/opentelemetry-collector: add nixosTest 2023-06-21 13:07:16 +01:00
openvscode-server.nix nixosTests.openvscode-server: init 2023-05-15 21:48:08 +02:00
orangefs.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
os-prober.nix nixosTests.os-prober: add bintools to the VM 2023-08-23 13:50:44 +00:00
osquery.nix nixos/tests/osquery.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
osrm-backend.nix
outline.nix outline: add nixos test 2023-05-23 12:03:39 +02:00
overlayfs.nix
owncast.nix
pacemaker.nix
packagekit.nix
pantheon.nix nixosTests.pantheon: Ensure the test fails when gala coredumps 2023-08-16 23:20:38 +08:00
paperless.nix nixos/paperless: add test for plaintext document 2023-08-05 22:06:27 +02:00
pass-secret-service.nix nixos/tests/pass-secret-service: fix eval 2023-02-16 19:11:10 +03:00
patroni.nix nixos/patroni: only run tests on x86_64-linux 2022-11-23 21:54:19 +01:00
pdns-recursor.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
peerflix.nix
peroxide.nix nixos/peroxide: add module for peroxide service 2023-03-18 07:43:59 +13:00
pgadmin4.nix nixosTests.pgadmin4: increase test coverage (#229632) 2023-05-15 17:04:22 +02:00
pgbouncer.nix nixos/pgbouncer: init (#241578) 2023-07-22 12:49:23 +02:00
pgjwt.nix
pgmanage.nix
phosh.nix phosh: add tomfitzhenry@ as maintainer 2023-03-04 00:47:15 +11:00
photoprism.nix nixos/photoprism: add test 2023-01-15 18:02:46 +01:00
pict-rs.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
pinnwand.nix nixos/tests/pinnwand: drop reaper, refactor steck setup 2022-11-27 13:50:44 +01:00
plasma-bigscreen.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
plasma5-systemd-start.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
plasma5.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
plausible.nix
please.nix nixos/tests/please.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
pleroma.nix nixosTests/pleroma: node.xx.config -> node.xx 2023-03-03 08:18:29 +01:00
plikd.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
plotinus.nix
podgrab.nix nixosTests.podgrab: fix failing test 2022-07-23 17:19:01 +02:00
polaris.nix nixos/tests/polaris.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
pomerium.nix pomerium: add test for UI 2023-03-18 06:49:22 -05:00
portunus.nix nixos/tests: init portunus 2023-05-21 23:56:02 +02:00
postfix-raise-smtpd-tls-security-level.nix
postfix.nix
postfixadmin.nix
postgis.nix
postgresql-jit.nix nixos/postgresql: fix enableJIT 2023-03-29 08:39:47 +02:00
postgresql-wal-receiver.nix postgresql: implement opt-in JIT support 2023-03-29 08:39:46 +02:00
postgresql.nix nixos/tests/postgresql: fix deprecation warning 2023-03-29 08:39:46 +02:00
power-profiles-daemon.nix nixosTests.power-profiles-daemon: enable polkit 2023-04-19 14:21:15 +00:00
powerdns-admin.nix powerdns-admin: 0.3.0 -> 0.4.1 2023-05-22 00:39:58 +02:00
powerdns.nix nixos/tests/powerdns: Stop manually configuring config path 2023-07-01 18:55:50 +08:00
pppd.nix nixos/tests/pppd: fix with ppp 2.5.0 2023-04-25 18:00:12 +02:00
predictable-interface-names.nix systemd-initrd: networkd 2023-04-17 16:41:34 -04:00
printing.nix nixos/tests/printing: split into service/socket 2022-12-07 15:57:45 +01:00
privacyidea.nix treewide: remove myself as maintainer from some pkgs 2022-08-03 14:17:51 +02:00
privoxy.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
prometheus-exporters.nix nixos/prometheus/unbound-exporter: update for new package 2023-08-28 23:21:52 +02:00
prometheus.nix
promscale.nix nixosTests.promscale: add tests for promscale_extension 2023-04-22 21:29:50 +04:00
prowlarr.nix nixos/tests/prowlarr.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
proxy.nix
pt2-clone.nix
public-inbox.nix public-inbox: add xapian to PATH 2023-06-20 16:58:47 +00:00
pufferpanel.nix nixos/pufferpanel: init 2023-04-16 15:41:24 +03:00
pulseaudio.nix nixos/tests/pulseaudio: add test for pacmd 2022-08-18 16:51:21 +02:00
pykms.nix pykms: switch to maintained fork, fix PYTHONPATH, add test 2022-06-27 09:14:57 +08:00
qboot.nix
qemu-vm-restrictnetwork.nix nixos/tests: add qemu-vm-restrictnetwork test 2023-01-12 19:50:27 +01:00
qemu-vm-volatile-root.nix nixos/tests/qemu-vm-volatile-root: init 2023-06-21 01:38:27 +02:00
qownnotes.nix qownnotes: add tests 2023-06-16 08:20:32 +02:00
quake3.nix nixos/tests/quake3.nix: get rid of with lib 2023-05-12 22:29:25 -03:00
quorum.nix
rabbitmq.nix nixosTests.rabbitmq: Test config decryption (fails) 2022-09-28 13:41:42 +02:00
radarr.nix nixos/tests/radarr.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
radicale.nix
ragnarwm.nix ragnarwm: init at 1.3.1 2023-08-20 18:20:39 +02:00
rasdaemon.nix
readarr.nix nixos/tests/readarr.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
redis.nix nixos/tests/redis.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
redmine.nix
restart-by-activation-script.nix
restic.nix nixos/restic: add wrapper scripts that set parameters for backup 2023-08-28 15:17:37 +02:00
retroarch.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
robustirc-bridge.nix
roundcube.nix
rshim.nix nixos/tests/rshim: init 2023-05-15 14:09:28 +02:00
rspamd.nix
rss2email.nix
rstudio-server.nix
rsyncd.nix
rsyslogd.nix
rxe.nix
sabnzbd.nix
samba-wsdd.nix nixos/samba-wsdd: add openFirewall option 2023-07-17 10:22:43 -04:00
samba.nix
sanoid.nix nixos/sanoid: fix aliased options 2022-08-22 18:56:47 +02:00
scaphandre.nix scaphandre: init at 0.5.0 (#238462) 2023-06-26 19:41:28 +02:00
schleuder.nix nixos/dnsmasq: Use attrs instead of plain text config 2022-12-04 23:08:37 +00:00
sddm.nix sddm: 0.19.0 -> 0.20.0 2023-07-07 12:46:59 +03:00
seafile.nix nixos/seafile: avoid sleep in tests 2022-10-09 13:31:13 -04:00
searx.nix
service-runner.nix
sftpgo.nix nixos/tests/sftpgo.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
sfxr-qt.nix
sgtpuzzles.nix nixos/tests/sgtpuzzles: init 2023-03-04 00:52:21 +11:00
shadow.nix nixos/tests/shadow: ensure hashedPassword takes precedence over initialHashedPassword 2023-02-25 14:27:35 -05:00
shattered-pixel-dungeon.nix
shiori.nix
signal-desktop.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
simple.nix
sing-box.nix sing-box: 1.3.4 -> 1.3.5 2023-08-01 13:01:54 +08:00
slurm.nix
smokeping.nix nixos/smokeping: Don't show 413 Forbidden on thttpd /. Fixes #197704 2022-10-25 23:11:50 +02:00
snapcast.nix
snapper.nix nixos/snapper/test: fix, make compliant with new config scheme 2023-06-18 16:20:31 +02:00
soapui.nix remove myself as maintainer for now as I switched to another distro 2023-02-25 18:56:02 +01:00
sogo.nix
solanum.nix
sonarr.nix nixos/tests/sonarr.nix: get rid of with lib 2023-05-12 22:29:29 -03:00
sourcehut.nix services.openssh: support freeform settings (#193757) 2023-01-15 16:32:46 +01:00
spacecookie.nix
sqlite3-to-mysql.nix sqlite3-to-mysql: init at 1.4.16 2022-11-13 20:18:24 +01:00
ssh-keys.nix
sslh.nix
sssd-ldap.nix nixos/test/sssd-ldap: do new login on a different VT 2023-05-09 18:51:47 +03:00
sssd.nix nixos/sssd: create symlinks in /etc to fix sssctl 2023-03-19 09:28:35 +01:00
stalwart-mail.nix nixos/stalwart-mail: add vm test 2023-09-03 22:18:50 -04:00
starship.nix
step-ca.nix Revert "treewide: use nativeBuildInputs with runCommand instead of inlining" 2022-12-26 21:05:35 +03:00
strongswan-swanctl.nix
stunnel.nix
sudo.nix nixosTests.sudo: use same maintainers as the package 2023-09-08 14:47:13 +02:00
swap-file-btrfs.nix nixos/config/swap: check failure in swap file test 2023-05-16 10:48:53 -04:00
swap-partition.nix nixos/tests(treewide): vdb → vda, vdc → vdb, vdd → vdc, … / bootDevice → rootDevice 2023-04-21 13:00:19 +02:00
swap-random-encryption.nix nixos/config/swap: improve randomEncrytion 2023-05-05 13:36:42 -04:00
sway.nix treewide: rename fonts.fonts to fonts.packages 2023-07-24 17:34:39 +02:00
switch-test.nix nixos/stc: Improve mount unit handling 2023-08-21 09:07:14 +02:00
sympa.nix for consistency use bob in tests instead of joe 2022-08-05 13:13:24 +02:00
syncthing-init.nix Revert "Merge pull request #233377 from ncfavier/revert-226088" 2023-06-29 17:56:30 +03:00
syncthing-no-settings.nix nixosTests.syncthing-no-settings: init 2023-06-29 17:57:13 +03:00
syncthing-relay.nix
syncthing.nix
systemd-analyze.nix
systemd-binfmt.nix
systemd-boot-ovmf-broken-fat-driver.patch systemd-boot: Patch for firmwares that fail to load large files 2023-05-30 19:21:16 -04:00
systemd-boot.nix nixos/systemd-boot: Replace proprietary memtest86 with free memtest86+ in UEFI 2023-08-14 03:05:24 +00:00
systemd-bpf.nix systemd: enable BPF_FRAMEWORK by default (withLibBPF=true) 2022-08-21 12:22:16 +02:00
systemd-confinement.nix nixos/*: md-convert hidden plaintext options 2022-08-31 16:32:54 +02:00
systemd-coredump.nix nixos: systemd-coredump: improve disabled state 2022-08-01 09:52:56 -07:00
systemd-credentials-tpm2.nix nixos/tests/systemd-credentials-tpm2: Add tests for systemd credentials 2023-02-20 13:54:49 +01:00
systemd-cryptenroll.nix nixosTests.systemd-cryptenroll: mark as not broken 2023-01-28 17:06:38 +01:00
systemd-escaping.nix
systemd-homed.nix nixos: add systemd-homed support 2022-12-09 12:10:51 -06:00
systemd-initrd-btrfs-raid.nix nixosTests.systemd-initrd-btrfs-raid: mount the host Nix store 2023-06-08 16:55:25 +02:00
systemd-initrd-luks-fido2.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
systemd-initrd-luks-keyfile.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
systemd-initrd-luks-password.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
systemd-initrd-luks-tpm2.nix nixos/qemu-vm: use persistent block device names 2023-06-16 19:36:03 +02:00
systemd-initrd-modprobe.nix nixos/tests/systemd-initrd-modprobe: init 2022-10-05 08:37:51 +08:00
systemd-initrd-networkd-ssh.nix nixos/tests/systemd-initrd-networkd-ssh.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
systemd-initrd-networkd.nix systemd stage 1 networking: Add network-pre to flush tests 2023-06-08 00:25:15 -04:00
systemd-initrd-simple.nix systemd-initrd: Add users and groups with static IDs. 2023-04-12 13:55:50 -04:00
systemd-initrd-swraid.nix boot.initrd.services.swraid -> boot.swraid 2023-07-10 20:20:08 +02:00
systemd-initrd-vconsole.nix nixos/tests/systemd-initrd-vconsole: fix test and improve reliability 2023-06-15 06:48:05 -04:00
systemd-journal.nix
systemd-machinectl.nix nixos/tests/machinectl: Disable tmpfs for /tmp 2022-10-27 20:19:18 +02:00
systemd-misc.nix
systemd-networkd-dhcpserver-static-leases.nix remove tomfitzhenry@ as maintainer for some packages 2023-07-23 12:39:57 +10:00
systemd-networkd-dhcpserver.nix remove tomfitzhenry@ as maintainer for some packages 2023-07-23 12:39:57 +10:00
systemd-networkd-ipv6-prefix-delegation.nix nixos/tests: Fix delegated prefix in prefix-delegation test 2023-07-06 22:49:06 +02:00
systemd-networkd-vrf.nix nixos/tests/systemd-networkd-vrf: clean up 2023-05-11 11:07:54 +02:00
systemd-networkd.nix
systemd-no-tainted.nix systemd-no-tainted: init as regression test 2022-10-05 01:03:24 +08:00
systemd-nspawn-configfile.nix nixos/tests/systemd-nspawn-configfile: init 2023-06-12 12:08:39 +02:00
systemd-nspawn.nix nixos/tests: refactor gpg-keyring test utility 2023-07-26 20:32:51 +02:00
systemd-oomd.nix nixos/tests/systemd-oomd: fix and follows upstream tests 2022-10-06 09:48:13 +08:00
systemd-portabled.nix nixos/tests: init systemd-portabled 2022-09-30 15:21:45 +02:00
systemd-repart.nix Merge pull request #232533 from nikstur/systemd-repart-create-root 2023-05-22 09:13:00 -04:00
systemd-shutdown.nix systemd shutdownRamfs: Fix infinite shutdown loop 2023-07-29 13:52:52 -04:00
systemd-sysupdate.nix nixos/tests/systemd-sysupdate: init 2023-07-26 20:33:33 +02:00
systemd-timesyncd.nix nixos/tests/systemd-timesyncd.nix: get rid of with lib 2023-05-12 22:29:30 -03:00
systemd-user-tmpfiles-rules.nix nixos: systemd: add systemd.user.tmpfiles 2023-01-17 12:19:40 +01:00
systemd-userdbd.nix nixos/systemd/userdbd: add method to enable service 2022-12-08 10:28:41 -06:00
systemd.nix nixosTests.nscd: init, move DynamicUser test into there 2022-10-07 14:19:56 +02:00
tandoor-recipes.nix nixos/tandoor-recipes: add test 2022-10-03 09:48:54 +02:00
taskserver.nix nixos/tests/taskserver: Fix build 2023-06-04 23:14:07 +02:00
tayga.nix nixos/tests/tayga: init 2022-12-01 11:17:39 +01:00
teeworlds.nix
telegraf.nix
teleport.nix nixos/tests/teleport: make justinas the maintainer 2023-02-28 13:22:50 +02:00
terminal-emulators.nix nixosTests.terminal-emulators: deprecated machine' attribute by nodes.machine' 2023-08-01 18:01:18 +08:00
thelounge.nix nixos/tests: Add names 2022-09-24 17:38:09 +01:00
tiddlywiki.nix
tigervnc.nix
timescaledb.nix cargo-pgx/timescaledb_toolkit: add nixos test 2023-02-13 10:58:26 +01:00
timezone.nix
tinydns.nix
tinywl.nix
tmate-ssh-server.nix nixos/tmate-ssh-server: fix test by opening port on firewall 2023-06-27 21:21:25 +08:00
tomcat.nix
tor.nix nixos/tests/tor.nix: get rid of with lib 2023-05-12 22:29:30 -03:00
tracee.nix tracee: 0.11.0 -> 0.13.0 2023-04-05 10:47:26 +01:00
traefik.nix nixos/traefik: add environmentFiles option 2023-04-25 16:05:28 +02:00
trafficserver.nix trafficserver: 9.1.3 -> 9.1.4 2022-12-27 21:15:43 +01:00
transmission.nix
trezord.nix
trickster.nix
trilium-server.nix
tsm-client-gui.nix
tuptime.nix
turbovnc-headless-server.nix services.openssh: support freeform settings (#193757) 2023-01-15 16:32:46 +01:00
tuxguitar.nix remove myself as maintainer for now as I switched to another distro 2023-02-25 18:56:02 +01:00
twingate.nix nixos/twingate: improve test 2023-07-23 01:24:51 +03:00
txredisapi.nix nixos/tests/txredisapi: stop using python38 2023-02-25 21:32:15 -08:00
typesense.nix nixos/typesense: init at 0.24.1 2023-07-22 16:38:13 +02:00
ucarp.nix
udisks2.nix
ulogd.nix nixos/tests/ulogd.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
unbound.nix nixos/tests: fix typos 2023-05-19 22:31:04 -04:00
unifi.nix nixos/tests/unifi: inherit allowUnfree into test node 2023-02-25 19:12:08 +01:00
upnp.nix miniupnpc_1: drop 2022-11-01 16:55:31 +01:00
uptermd.nix
uptime-kuma.nix nixos/tests/uptime-kuma.nix: get rid of with lib 2023-05-12 22:29:30 -03:00
usbguard.nix
user-activation-scripts.nix nixos/systemd-user: call systemd-tmpfiles during activation 2023-08-29 10:46:44 -07:00
user-expiry.nix nixos/update-users-groups: add nixos test for the expires option 2023-08-02 13:51:06 +02:00
user-home-mode.nix
uwsgi.nix
v2ray.nix nixos/{test/,}v2ray: fix for new CLI and use upstream systemd units 2022-09-21 15:59:29 +08:00
varnish.nix nixos/tests/varnish: init 2022-09-27 21:45:27 +02:00
vault-agent.nix nixosTests.vault-agent: init 2023-04-25 15:58:30 +02:00
vault-dev.nix nixos/vault: add option to start in dev mode. (#180114) 2022-07-05 10:54:11 +02:00
vault-postgresql.nix
vault.nix
vaultwarden.nix vaultwarden: 1.27.0 -> 1.28.0 2023-03-28 10:15:39 -07:00
vector.nix nixosTests.vector: fix race condition 2023-05-11 19:45:47 +02:00
vengi-tools.nix vengi-tools: 0.0.20 -> 0.0.21 2022-09-06 16:00:26 +02:00
victoriametrics.nix
vikunja.nix nixos/vikunja: test 'port' option 2023-05-13 18:01:36 +01:00
virtualbox.nix nixosTests.virtualbox: fix eval 2023-08-23 12:25:34 +00:00
vscode-remote-ssh.nix vscode: move rev and vscodeServer to derivation 2023-06-09 18:52:10 +10:00
vscodium.nix treewide: rename fonts.fonts to fonts.packages 2023-07-24 17:34:39 +02:00
vsftpd.nix nixos/tests: fix type mismatch in wait_for_open_port 2022-06-11 14:22:53 +02:00
warzone2100.nix nixosTests.warzone2100: init 2022-11-24 20:48:42 +01:00
wasabibackend.nix
webhook.nix nixos/webhook: init 2022-12-29 01:24:46 +01:00
wiki-js.nix nixosTests.wiki-js: fix test on i686-linux 2023-05-09 15:22:35 +02:00
wine.nix nixosTests.wine.wineWowPackages-wayland: drop 2022-10-15 14:03:24 +02:00
without-nix.nix
wmderland.nix
wordpress.nix wordpress: 6.1.1 -> 6.2; wordpress6_2: init 2023-05-03 13:56:50 +02:00
wpa_supplicant.nix nixos/hostapd: fix regression after refactoring to RFC42. 2023-07-25 18:40:51 +02:00
wrappers.nix Revert "nixos/security/wrappers: simplifications and a fix for #98863" 2023-08-24 08:35:11 +02:00
xandikos.nix
xautolock.nix nixos/tests/xautolock.nix: get rid of with lib 2023-05-12 22:29:26 -03:00
xfce.nix nixosTests.xfce: silence a deprecation warning 2023-03-15 17:03:35 +08:00
xmonad-xdg-autostart.nix
xmonad.nix
xpadneo.nix nixos/xpadneo: add sanity test 2022-09-20 20:07:11 -04:00
xrdp.nix maintainers: remove volth 2022-06-29 00:52:12 +02:00
xss-lock.nix nixos/tests/xss-lock.nix: get rid of with lib 2023-05-12 22:29:30 -03:00
xterm.nix
xxh.nix
yabar.nix nixos/tests/yabar.nix: get rid of with lib 2023-05-12 22:29:30 -03:00
yggdrasil.nix nixos/tests/yggdrasil: fix local peering test 2023-04-11 14:34:28 +02:00
zammad.nix zammad: link test in passthru.tests 2023-05-17 16:06:50 +02:00
zeronet-conservancy.nix zeronet-conservancy: add nixos test 2022-06-18 22:06:55 +02:00
zfs.nix Merge pull request #207039 from NixOS/qemu-boot-disk-using-make-disk-image 2023-04-21 13:47:17 +02:00
zigbee2mqtt.nix nixos/tests/zigbeem2mqtt: add name 2022-09-01 13:32:47 +02:00
zoneminder.nix
zookeeper.nix
zram-generator.nix nixos/zram: add writebackDevice option and corresponding test 2023-03-21 09:26:27 +08:00
zrepl.nix zrepl: 0.5.0 -> 0.6.0 2022-11-07 18:35:44 -05:00
zsh-history.nix