about summary refs log tree commit diff
path: root/nixos
AgeCommit message (Collapse)AuthorFilesLines
2023-07-01Merge pull request #231609 from Mic92/bcachefs-toolsJörg Thalheim3-5/+13
bcachefs-tools: unstable-2023-01-31 -> unstable-2023-05-13
2023-07-01nixos/test/bcachefs: fix password inputJörg Thalheim2-2/+2
2023-07-01nixos/bcachefs: add new mount.bcachefs utilJörg Thalheim1-3/+11
2023-07-01nixos/vaultwarden: Bind to localhost by default. See #100192Niklas Hambüchen2-1/+8
2023-07-01Merge pull request #218280 from thequux/set-pdns-config-dirNick Cao3-7/+5
powerdns, pdns-recursor: find config in /etc by default
2023-07-01docs: clarify videoDrivers breakage in release notesSven Slootweg1-1/+1
2023-07-01pdns: Changed paths in /etc to use pdns instead of powerdnsTQ Hirsch2-2/+2
2023-07-01nixos/tests/powerdns: Stop manually configuring config pathTQ Hirsch1-7/+1
2023-07-01nixos/powerdns, nixos/pdns-recurser: Symlink configuration into /etcTQ Hirsch2-0/+4
This places a symlink to the running configuration where the admin tools expect it, allowing users to control the powerdns server or recursor without manually specifying a config file.
2023-07-01Merge pull request #178610 from Et7f3/headless-remove-vesaJanik1-3/+1
2023-07-01Merge pull request #240792 from accelbread/plymoutherrorWill Fancher1-1/+3
nixos/gdm: fix plymouth-quit bootup error message
2023-07-01Merge pull request #232454 from quentinmit/bridge-vlanpennae2-14/+54
nixos/networkd: Fix typo in BridgeVLAN options
2023-06-30Merge pull request #240325 from 999eagle/update/searxngMichele Guerini Rocco2-1/+60
nixos/searx: add configuration for redis and limiter settings
2023-06-30nixos/gdm: fix plymouth-quit bootup error messageArchit Gupta1-1/+3
If plymouth is not enabled, there is no plymouth-quit service created otherwise, so setting systemd.services.plymouth-quit.wantedBy creates an empty service which logs an error during bootup. The plymouth fix should only be applied if plymouth is actually available to prevent a needless systemd service error on systems with gdm but no plymouth (such as a default gnome setup).
2023-06-30Merge pull request #240754 from SuperSandro2000/ssh-fix-manpagepennae4-21/+28
nixos/{sshd,thelounge,ttyd,proxmox-image}: fix example rendering
2023-06-30Merge pull request #240744 from NixOS/pcdcd-plugins-defaultDomen Kožar1-1/+2
nixos: append ccid as a plugin
2023-06-30nixos/proxmox-image: fix example renderingSandro Jäckel1-4/+6
2023-06-30nixos/ttyd: fix example renderingSandro Jäckel1-5/+6
2023-06-30nixos/thelounge: fix example renderingSandro Jäckel1-8/+10
2023-06-30nixos/sshd: fix example renderingSandro Jäckel1-4/+6
2023-06-30nixos: append ccid as a pluginDomen Kožar1-1/+2
2023-06-30nixos/gnupg: fix pinentryFlavor documentation and add release noteDavid McFarland2-3/+3
2023-06-30nixos/gnupg: fix gpg-agent when pinentryFlavor is nullDavid McFarland1-2/+3
8ea644997f7d92cac129ddbfab14b33997038dae moved the configuration outside the pinentryFlavor check, causing evaluation to fail when it was set to null. 960a5142aa812a2df307a6fab65b25ad698e13b5 removed the upstream systemd units, causing gpg-agent.service to be conditional on pinentryFlavor.
2023-06-30Merge pull request #240467 from NickCao/deepin-trivialNick Cao1-0/+2
deepin: some trivial updates, upstream changes reviewed
2023-06-30Merge pull request #208605 from Izorkin/update-giteaMaximilian Bosch1-3/+8
nixos/gitea: update configuration
2023-06-30nixos/searx: add configuration for redis and limiter settingsSophie Tauchert2-1/+60
2023-06-30nixosTests.deepin: raise virtualisation.memorySize to 2048Nick Cao1-0/+2
2023-06-29nixosTest: provide a test for lib.extend in nixosTests & runNixOSTestArthur Gautier2-0/+32
2023-06-29nixosTest: adds support for lib.extendArthur Gautier1-0/+1
When lib overrides were used, before this commit, they would not be made available in the configuration evaluation of nixosTest's nodes. Sample code: ``` nix let pkgs = import ./. { overlays = [ (new: old: { lib = old.lib.extend (self: super: { sorry_dave = builtins.trace "There are no pod bay doors" "sorry dave"; }); }) ]; }; in pkgs.testers.nixosTest { name = "demo lib overlay"; nodes = { machine = { lib, ... }: { environment.etc."got-lib-overlay".text = lib.sorry_dave; }; }; testScript = { nodes }: '' start_all() machine.succeed('grep dave /etc/got-lib-overlay') ''; } ```
2023-06-29Merge pull request #240261 from bobby285271/upd/pantheonBobby Rong1-1/+0
Pantheon updates 2023-06-28
2023-06-29nixos/pantheon: Stop shipping gnome-bluetooth-contract by defaultBobby Rong1-1/+0
The functionality is now covered by wingpanel-indicator-bluetooth 7.0.0.
2023-06-29Merge pull request #240417 from kevincox/minetest-confKevin Cox1-8/+63
nixos.minetest-server: Add option for generating config file and ability to add extra command line flags
2023-06-29Merge pull request #240397 from Ma27/linux-kernel-updatesMaximilian Bosch1-0/+1
Linux kernel updates 2023-06-28
2023-06-29Merge pull request #240394 from gaelreyrol/prometheus-php-fpm-exporter-initPol Dellaiera4-1/+110
prometheus-php-fpm-exporter: init at 2.2.0
2023-06-29Fix typo in 23.05 release notesThane Gill1-1/+1
2023-06-28nixos.minetest-server: Add option for generating config file and ability to ↵Kevin Cox1-8/+63
add extra command line flags This adds two main features: 1. `services.minetest-server.config` is an options object that is automatically serialized into a minetest config file. 2. `services.minetest-server.extraArgs` provides an escape hatch to pass extra arguments.
2023-06-28nixos/gitea: update sandboxing optionsIzorkin1-3/+8
2023-06-28nixos/doc: new prometheus.exporters additionGaël Reyrol1-0/+2
2023-06-28nixos/prometheus-exporters: add php-fpmGaël Reyrol3-1/+108
2023-06-28linux_6_3_hardened: expose packageMaximilian Bosch1-0/+1
2023-06-28Merge branch 'master' into haskell-updatesmaralorn13-24/+259
2023-06-28nixos/paperless: Enable UMask now that it works (#240010)Benjamin Staffin1-2/+1
According to https://github.com/NixOS/nixpkgs/issues/147599#issuecomment-1272286679 the bug that prevented this UMask directive from working has been fixed in systemd, so it should be safe to use now. This stops paperless-ngx from making everything world-readable on disk, but it does not change permissions of any files previously created.
2023-06-28nixos/fontdir: add otb to font regex (#239802)dariof41-1/+1
2023-06-28nixos/grafana: disable updater by default (#240323)Sandro1-1/+1
2023-06-28services/calibre-server: Add new http & auth options (#216497)Gaël Reyrol4-17/+184
nixos/doc: add calibre-server new options
2023-06-28Merge pull request #240292 from sysvinit/sysvinit/initrd-udev-docsMichele Guerini Rocco1-2/+2
nixos/manual: rename references to services.udev.initrdRules
2023-06-28Merge pull request #239803 from gaelreyrol/prometheus-scaphandre-exporter-initPol Dellaiera4-0/+67
services/prometheus/exporters: add scaphandre
2023-06-28Merge pull request #240121 from NickCao/tmate-msgpackChristian Kögler1-0/+1
tmate, tmate-ssh-server: update and use msgpack-c instead of msgpack
2023-06-28Merge pull request #232415 from jensbin/displaylink57Pol Dellaiera1-0/+1
displaylink: 5.6.1-59.184 -> 5.7.0-61.129
2023-06-28nixos/paperless: add leona as maintainerLeona Maroni1-1/+1