nixpkgs/nixos/tests
Maximilian Bosch 48459567ae nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15
Closes #216989

First of all, a bit of context: in PostgreSQL, newly created users don't
have the CREATE privilege on the public schema of a database even with
`ALL PRIVILEGES` granted via `ensurePermissions` which is how most of
the DB users are currently set up "declaratively"[1]. This means e.g. a
freshly deployed Nextcloud service will break early because Nextcloud
itself cannot CREATE any tables in the public schema anymore.

The other issue here is that `ensurePermissions` is a mere hack. It's
effectively a mixture of SQL code (e.g. `DATABASE foo` is relying on how
a value is substituted in a query. You'd have to parse a subset of SQL
to actually know which object are permissions granted to for a user).

After analyzing the existing modules I realized that in every case with
a single exception[2] the UNIX system user is equal to the db user is
equal to the db name and I don't see a compelling reason why people
would change that in 99% of the cases. In fact, some modules would even
break if you'd change that because the declarations of the system user &
the db user are mixed up[3].

So I decided to go with something new which restricts the ways to use
`ensure*` options rather than expanding those[4]. Effectively this means
that

* The DB user _must_ be equal to the DB name.
* Permissions are granted via `ensureDBOwnerhip` for an attribute-set in
  `ensureUsers`. That way, the user is actually the owner and can
  perform `CREATE`.
* For such a postgres user, a database must be declared in
  `ensureDatabases`.

For anything else, a custom state management should be implemented. This
can either be `initialScript`, doing it manual, outside of the module or
by implementing proper state management for postgresql[5], but the
current state of `ensure*` isn't even declarative, but a convergent tool
which is what Nix actually claims to _not_ do.

Regarding existing setups: there are effectively two options:

* Leave everything as-is (assuming that system user == db user == db
  name): then the DB user will automatically become the DB owner and
  everything else stays the same.

* Drop the `createDatabase = true;` declarations: nothing will change
  because a removal of `ensure*` statements is ignored, so it doesn't
  matter at all whether this option is kept after the first deploy (and
  later on you'd usually restore from backups anyways).

  The DB user isn't the owner of the DB then, but for an existing setup
  this is irrelevant because CREATE on the public schema isn't revoked
  from existing users (only not granted for new users).

[1] not really declarative though because removals of these statements
    are simply ignored for instance: https://github.com/NixOS/nixpkgs/issues/206467
[2] `services.invidious`: I removed the `ensure*` part temporarily
    because it IMHO falls into the category "manage the state on your
    own" (see the commit message). See also
    https://github.com/NixOS/nixpkgs/pull/265857
[3] e.g. roundcube had `"DATABASE ${cfg.database.username}" = "ALL PRIVILEGES";`
[4] As opposed to other changes that are considered a potential fix, but
    also add more things like collation for DBs or passwords that are
    _never_ touched again when changing those.
[5] As suggested in e.g. https://github.com/NixOS/nixpkgs/issues/206467
2023-11-13 17:16:25 +01:00
..
activation nixos/nix-channnel: fix setting up the default channel again 2023-11-01 16:23:28 +01:00
common systemd-stage-1: Add assertions for unsupported options. 2023-10-30 12:15:58 +01: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 nixosTests.garage: fix 2023-10-18 19:20:03 +02:00
git
google-oslogin nixosTests.google-oslogin: fix tests, provide group mock endpoint 2023-02-05 20:52:23 +01:00
grafana nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
hadoop treewide: replace <command> | systemd-cat with systemd-cat <command> 2023-11-07 21:08:23 +03:00
hitch
hocker-fetchdocker
hydra treewide: remove myself (ma27) from a few packages 2023-10-18 15:47:20 -03:00
incus nixos/tests/incus: improve test resiliency under load 2023-11-02 22:09:37 -04: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
kubo nixos/tests/kubo: various improvements 2023-10-10 10:46:25 +02: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 lxc-container: add squashfs image support and release output 2023-10-12 10:52:05 -04:00
maddy nixos/maddy: Add tls option 2023-05-01 19:12:26 +02:00
matrix nixos/synapse: move services.matrix-synapse.workers.config to services.matrix-synapse.workers 2023-09-18 08:24:37 +02:00
mysql percona-server_8_0: init at 8.0.34 2023-10-04 20:58:50 +02:00
nextcloud nixos/tests: remove unnecessary stateVersion assignments 2023-10-27 12:56:13 +03: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: test timeout failures 2023-10-29 12:45:00 +01:00
pam nixos/pam: add order comment to each rule line 2023-10-10 21:11:35 -04: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
rkvm nixos/rkvm: add nixos test 2023-10-18 06:21:40 +03: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.encryption: fix after stratis update 2023-10-24 18:47:39 -04:00
tinc
ulogd ulogd: add support for multiple logging stacks 2023-09-18 00:16:54 +02:00
web-apps netbox_3_6: init, mark 3_5 as EOL 2023-09-26 22:42:49 +02: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 nixos/acme: rename option credentialsFile to environmentFile 2023-09-11 16:34:20 +00:00
adguardhome.nix nixos/adguardhome: Fix openFirewall 2023-09-09 08:19:22 +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 #230380 from graham33/feature/zwave-js-server_module 2023-11-06 20:24:56 +01:00
alps.nix maintainers: remove and add hmenke 2022-12-03 12:26:58 +01:00
amazon-init-shell.nix
amd-sev.nix nixos/amd.sev: add test 2023-09-15 15:38:49 +02:00
anbox.nix anbox: always use postmarket OS images 2023-09-11 08:09:37 +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
audiobookshelf.nix audiobookshelf: init module 2023-09-29 22:01:45 +02: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 bcachefs tests: unlock directly to the right keyring 2023-09-22 12:58:04 +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 nixos/tests/bittorrent: Uncomment Seeder Takedown 2023-10-24 07:24:27 +01:00
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 nixosTests.buildbot: fix impure evaluation 2023-10-16 15:40:45 +10:00
buildkite-agents.nix nixos/tests/buildkite-agents.nix: remove overuses of with 2023-08-01 10:12:12 +00:00
c2fmzq.nix nixos/c2fmzq-server: add test 2023-10-26 17:27:53 +02: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
castopod.nix treewide: replace <command> | systemd-cat with systemd-cat <command> 2023-11-07 21:08:23 +03:00
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 nixosTests.cinnamon: Extend the test 2023-11-01 09:18:02 +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 cockpit: 287 -> 303 2023-10-22 22:39:22 -03: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
containers-ephemeral.nix
containers-extra_veth.nix
containers-hosts.nix
containers-imperative.nix nixos/tests: remove unnecessary stateVersion assignments 2023-10-27 12:56:13 +03: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: fix override existed config issue 2023-09-12 00:29:56 +08:00
darling.nix llvmPackages_latest: move to aliases.nix 2023-05-08 13:05:33 +00:00
dconf.nix nixos/tests/dconf: fix config format 2023-10-06 23:52:52 +03:00
deconz.nix nixos/tests/deconz: init 2023-10-16 20:49:41 +02: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 nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
dhparams.nix nixosTests.dhparams: fix with openssl3 2022-11-11 02:55:54 +01:00
disable-installer-tools.nix
discourse.nix nixosTests.discourse: Do not use deprecated field 2023-09-13 14:48:17 +02: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 treewide: remove myself (ma27) from a few packages 2023-10-18 15:47:20 -03: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 nixosTests.docker-tools: bump diskSize from 2048 -> 3072 2023-09-17 12:18:42 +01:00
docker.nix virtualisation.docker: require docker.service for docker-prune.service 2022-09-24 10:42:00 +02:00
documize.nix treewide: remove myself (ma27) from a few packages 2023-10-18 15:47:20 -03: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
fanout.nix nixos/fanout: add test 2023-10-21 17:31:14 -03:00
fastnetmon-advanced.nix nixos/tests/fastnetmon-advanced: init 2023-10-23 22:51:19 +02:00
fenics.nix
ferm.nix
ferretdb.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
firefox.nix nixos/tests/firefox: use the module 2023-10-22 17:13:50 +03: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 noto-fonts-emoji → noto-fonts-color-emoji 2023-09-12 12:38:07 +00:00
forgejo.nix nixosTests.forgejo: test git wire protocol version 2023-10-24 03:32:03 +02:00
freenet.nix nixosTests.freenet: init 2022-11-30 12:15:00 +01:00
freeswitch.nix
freetube.nix freetube: add test 2023-10-31 08:32:01 +11:00
freshrss-http-auth.nix nixos/freshrss: authType option 2023-07-19 19:43:55 -05:00
freshrss-pgsql.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +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
frp.nix nixos/frp: add test and link to package 2023-09-17 14:37:19 +08: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 nixosTests.gitea: remove emilylange from maintainers 2023-11-07 19:10:56 +01: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: Restore wait_for_x test 2023-10-06 18:39:10 +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
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
goss.nix nixosTests.goss: init 2023-10-27 08:02:01 +02:00
gotify-server.nix treewide: remove myself (ma27) from a few packages 2023-10-18 15:47:20 -03:00
grafana-agent.nix
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
grow-partition.nix nixos/grow-partition: add nixos test 2023-10-20 08:58:10 +00: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: fix eval 2023-10-06 23:54:57 +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: refactor to reduce option count 2023-10-15 08:45:43 +02: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/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
home-assistant.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01: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
influxdb2.nix nixos/influxdb2: add org, bucket, users and auth provisioning 2023-08-23 14:46:52 +02:00
influxdb.nix
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 Merge pull request #262854 from ElvishJerricco/systemd-stage-1-bcachefs-decryption 2023-10-29 22:24:38 +01:00
installer.nix Merge pull request #262854 from ElvishJerricco/systemd-stage-1-bcachefs-decryption 2023-10-29 22:24:38 +01: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 treewide: replace <command> | systemd-cat with systemd-cat <command> 2023-11-07 21:08:23 +03:00
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
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
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 nixosTests.kea: use knot.settings for configuration 2023-09-23 10:04:02 +02:00
keepalived.nix
keepassxc.nix keepassxc: fix test timeout 2023-02-21 09:29:23 +01:00
kernel-generic.nix linux_4_14: remove 2023-10-15 01:19:34 +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 extraConfig option 2023-10-07 11:50:04 +03:00
keymap.nix nixos/x11: move extraLayouts into xkb attrset 2023-11-01 11:55:25 +01:00
knot.nix nixosTests.knot: use settings format 2023-09-23 10:04:02 +02: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
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
lanraragi.nix nixos/lanraragi: init 2023-10-25 01:14:59 +02:00
leaps.nix
legit.nix nixos/tests/legit: fix eval 2023-10-06 23:55:20 +03: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
librenms.nix nixos/librenms: add nixos test 2023-10-16 13:28:22 +02: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/lighttpd: add reload support 2023-10-19 19:23:04 +02:00
limesurvey.nix
listmonk.nix listmonk: revamp the tests 2023-08-23 00:25:47 +02:00
litestream.nix nixos/tests/litestream: fix eval 2023-10-07 00:07:11 +03:00
livebook-service.nix livebook: add systemd user service, test, and docs 2023-10-31 07:31:18 +00:00
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-image-server: fix eval 2023-10-07 00:07:50 +03: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
mailhog.nix
mailman.nix nixos/mailman: store locks in ephemeral runtime directory 2023-10-12 10:39:18 +00: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: add nginx option 2023-10-04 22:21:55 +01: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/systemd-tmpfiles: add settings option 2023-10-23 00:34:23 +02:00
mobilizon.nix nixos/mobilizon: fix integration test by using postgresql_14 2023-11-07 16:29:40 +00:00
mod_perl.nix
molly-brown.nix
mongodb.nix nixos/tests/mongodb: remove non-existent maintainer 2023-10-07 00:07:40 +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: remove the bind_interface test 2023-10-22 19:12:26 +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
nbd.nix
ncdns.nix
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 tests/netdata: fix test after upgrade to 1.43.0 2023-10-28 14:43:19 +00:00
networking-proxy.nix nixos: fix typos 2022-12-17 19:31:14 -05:00
networking.nix Merge pull request #258695 from Majiir/fix-networkd-defaultgateway 2023-10-15 16:42:01 +02:00
nexus.nix
nghttpx.nix
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-sso.nix
nginx-status-page.nix nixos/nginx: add test for status page 2023-07-28 20:29:09 +02:00
nginx-tmpdir.nix nixos/tests: add test for nginx temp directories removal 2023-10-06 14:26:37 +02:00
nginx-unix-socket.nix nixos/nginx: Allow empty port for listen directive 2023-10-09 21:16:03 -04: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-install-bootloader.nix nixos/tests: add nixos-rebuild-install-bootloader 2023-10-23 12:39:40 +01:00
nixos-rebuild-specialisations.nix nixosTests.nixos-rebuild-specialisations: Fix 2023-06-10 18:25:04 +02:00
node-red.nix
nomad.nix
non-default-filesystems.nix nixos/tests: add myself to maintainers of erofs test 2023-07-10 22:02:36 +02:00
non-switchable-system.nix nixos: add system.switch.enable flag 2023-10-26 17:47:35 +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 noto-fonts-emoji → noto-fonts-color-emoji 2023-09-12 12:38:07 +00: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 nixosTests.nginx-sandbox: remove broken test and move the sandboxing test to the openresty test 2023-10-23 06:09:45 +03:00
opensearch.nix nixos/tests/opensearch: replace activationScript via tmpfiles 2023-10-26 01:44:21 +02:00
opensmtpd-rspamd.nix
opensmtpd.nix
opensnitch.nix nixos/opensnitch: add test 2023-08-13 17:49:19 +02:00
openssh.nix Merge pull request #260050 from 6t8k/nixos-test-openssh-wait-for-sshd 2023-11-08 01:00:37 +02:00
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: fix eval 2023-10-06 23:55:20 +03: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: Extend the tests 2023-10-09 00:14:30 +08:00
paperless.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01: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
peerflix.nix
peroxide.nix nixos/peroxide: add module for peroxide service 2023-03-18 07:43:59 +13:00
pgadmin4.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
pgbouncer.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01: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
pinnwand.nix nixos/tests/pinnwand: drop reaper, refactor steck setup 2022-11-27 13:50:44 +01: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
plasma-bigscreen.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
plausible.nix treewide: remove myself (ma27) from a few packages 2023-10-18 15:47:20 -03:00
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
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 postgresqlPackages.postgis: 3.3.3 -> 3.4.0 2023-09-08 04:20:00 +00:00
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/postgresql: remove postgresql_11-backup-all test 2023-10-30 15:11:06 +01:00
power-profiles-daemon.nix nixosTests.power-profiles-daemon: enable polkit 2023-04-19 14:21:15 +00:00
powerdns-admin.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01: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 nixos/tests/predictable-interface-names: fix eval for systemd-stage1 2023-11-01 22:09:25 +03:00
printing.nix nixos/printing: Add openFirewall option (#176539) 2023-11-05 16:01:20 +01:00
privoxy.nix
prometheus-exporters.nix Merge pull request #267120 from teutat3s/zhf/fix-prometheus-exporter-smokeping 2023-11-12 20:23:34 -05: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
qboot.nix
qemu-vm-external-disk-image.nix nixos/qemu-vm: optionally disable overriding fileSystems 2023-10-02 11:13:26 +02:00
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
qgis.nix qgis: add nixos tests 2023-09-02 17:15:56 +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: allow timer to be disabled 2023-11-07 22:37:37 +01:00
retroarch.nix nixos/tests: adjust everything I missed for sddm update 2023-07-09 18:49:28 +03:00
robustirc-bridge.nix
rosenpass.nix rosenpass: refactor, add module and test (#254813) 2023-10-23 19:29:30 +02:00
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 nixos/tests/sabnzbd: add check for sabctools mismatch 2023-10-11 08:53:22 -04:00
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/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
sfxr-qt.nix
sgt-puzzles.nix sgt-puzzles: rename all "sgtpuzzles" -> "sgt-puzzles" 2023-10-06 21:36:48 +11:00
shadow.nix nixos/tests/shadow: test hashedPasswordFile 2023-09-13 17:00:05 +02:00
shattered-pixel-dungeon.nix nixosTests.shattered-pixel-dungeon: use wait_for_text 2023-11-07 19:33:16 +00:00
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
soft-serve.nix nixos/soft-serve: init 2023-10-21 17:51:42 +02: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 sourcehut: disable IPv6 completely for tests 2023-11-11 13:01:47 +01:00
spacecookie.nix
sqlite3-to-mysql.nix python311Packages.factory-boy: rename from factory_boy 2023-10-08 12:32:12 +09:00
ssh-audit.nix ssh-audit: add test of audited configuration 2023-10-27 22:07:52 +03:00
ssh-keys.nix
sslh.nix nixos/sslh: refactor for RFC42 2023-10-29 18:13:37 +01:00
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 nixos/tests/stunnel: replace activationScript 2023-10-26 01:44:21 +02:00
sudo-rs.nix nixosTests.sudo-rs: use sudo-rs 2023-09-22 15:14:14 +02:00
sudo.nix nixos/tests/sudo: check that sudo is enabled by default 2023-11-10 03:32:26 +01: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/switchTest: Also test swap devices 2023-09-22 10:26:11 +02:00
sympa.nix for consistency use bob in tests instead of joe 2022-08-05 13:13:24 +02:00
syncthing-init.nix nixos/tests/syncthing-init: Remove unused testName attribute 2023-10-07 14:04:43 +03:00
syncthing-many-devices.nix nixos/syncthing: get API key for every curl request 2023-10-15 02:04:52 +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: add julienmalka as maintainer 2023-11-04 02:38:11 +01: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: adopt newest TPM support in test infra 2023-10-22 16:01:37 +02:00
systemd-cryptenroll.nix nixos/tests: adopt newest TPM support in test infra 2023-10-22 16:01:37 +02:00
systemd-escaping.nix
systemd-homed.nix nixos: add systemd-homed support 2022-12-09 12:10:51 -06:00
systemd-initrd-bridge.nix nixos/tests/systemd-initrd-bridge: init 2023-08-25 13:11:20 -04: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/tests: adopt newest TPM support in test infra 2023-10-22 16:01:37 +02:00
systemd-initrd-modprobe.nix nixos/tests/systemd-initrd-modprobe: Test parameter in stage 1 2023-11-09 17:53:49 -05:00
systemd-initrd-networkd-ssh.nix nixos/tests/systemd-initrd-networkd-ssh: Test with backdoor not LUKS 2023-11-09 17:53:49 -05:00
systemd-initrd-networkd.nix nixos/tests/systemd-initrd-networkd: Use initrdBackdoor 2023-11-09 17:53:49 -05:00
systemd-initrd-simple.nix systemd-stage-1: Enable backdoor in nixos tests 2023-11-09 17:53:48 -05:00
systemd-initrd-swraid.nix nixos/swraid: fix regression for old initrd and add test coverage 2023-09-10 17:16:33 +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-initrd-vlan.nix nixos/tests/systemd-initrd-vlan: init 2023-08-25 10:32:10 -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 maintainers: ninjatrappeur -> picnoir 2023-11-11 08:31:16 +01:00
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 nixos/systemd-repart: remove superfluous gpt manipulation 2023-10-16 19:03:57 +02: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: replace activationScript via tmpfiles 2023-10-26 01:44:21 +02: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 Merge branch 'master' into staging-next 2023-10-20 09:29:36 +03:00
tandoor-recipes.nix nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
tang.nix nixos/tang: create module for tang server (#247037) 2023-10-16 13:10:15 +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
tinyproxy.nix nixosTests.tinyproxy: init 2023-05-11 09:52:43 +02:00
tinywl.nix nixosTests.tinywl: fix by adding Mesa drivers 2023-09-25 13:04:20 +02:00
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 nixos/tests/tracee: fix eval 2023-10-07 00:17:54 +03: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 nixosTests.tranmission_4: init 2023-09-23 21:38:47 +10:00
trezord.nix
trickster.nix
trilium-server.nix
tsja.nix postgresqlPackages.tsja: init at 0.5.0 2023-10-27 01:09:48 +07:00
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 nixos/tests/udisks2: actually start udisks 2023-11-12 12:09:58 +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 Merge pull request #266093 from K900/pipe-systemd-cat 2023-11-08 11:28:44 +03: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/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +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
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 nixos/postgresql: drop ensurePermissions, fix ensureUsers for postgresql15 2023-11-13 17:16:25 +01:00
wine.nix nixosTests.wine.wineWowPackages-wayland: drop 2022-10-15 14:03:24 +02:00
without-nix.nix
wmderland.nix
wordpress.nix wordpress6_1, wordpress6_2: drop 2023-10-10 18:38:22 +02:00
wpa_supplicant.nix nixos/hostapd: fix regression after refactoring to RFC42. 2023-07-25 18:40:51 +02:00
wrappers.nix nixos/security/wrappers: add one regression test for #98863 2023-08-27 14:10:38 +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: Check if any coredumps are found 2023-10-30 21:15:22 +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/yggdrasil: add extraArgs option 2023-10-06 17:59:14 +01:00
zammad.nix zammad: link test in passthru.tests 2023-05-17 16:06:50 +02:00
zeronet-conservancy.nix
zfs.nix zfs: 2.1.13 -> 2.2.0 2023-10-21 12:16:31 -04: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
zwave-js.nix zwave-js: module init, zwave-js-server: init at 1.33.0 2023-11-02 08:21:09 +00:00