about summary refs log tree commit diff
path: root/nixos/modules/services
Commit message (Collapse)AuthorAge
* Merge pull request #89486 from Ma27/dovecot-mailboxeslewo2020-06-17
|\ | | | | nixos/dovecot2: turn `mailboxes`-option into an attr-set
| * nixos/dovecot2: refactor mailboxes optionMaximilian Bosch2020-06-17
| | | | | | | | | | | | | | Specifying mailboxes as a list isn't a good approach since this makes it impossible to override values. For backwards-compatibility, it's still possible to declare a list of mailboxes, but a deprecation warning will be shown.
| * nixos/dovecot2: add autoexpunge settingMaximilian Bosch2020-06-17
| | | | | | | | | | | | To automatically purge old email. See also https://wiki.dovecot.org/MailboxSettings
* | Merge pull request #74589 from tmplt/fix-physlockSilvan Mosberger2020-06-17
|\ \ | |/ |/| nixos/physlock: add suspend-then-hibernate to lockOn.suspend units
| * nixos/physlock: add suspend-then-hibernate to suspend/hibernate unitstmplt2020-06-16
| |
* | Merge pull request #87833 from Izorkin/sandbox-mysqlJörg Thalheim2020-06-16
|\ \
| * | nixos/mysql: fix init databases on first start in sandbox modeIzorkin2020-06-10
| | |
| * | nixos/mysql: update tmpfiles rulesIzorkin2020-06-10
| | |
| * | nixos/mysql: enable sandbox modeIzorkin2020-06-10
| | |
* | | Merge pull request #90539 from r-ryantm/auto-update/fwupdJan Tojnar2020-06-16
|\ \ \
| * | | fwupd: Add passthru consistency testJan Tojnar2020-06-16
| | | | | | | | | | | | | | | | We need to keep the passthru.filesInstalledToEtc and passthru.defaultBlacklistedPlugins in sync with the package contents so let's add a test to enforce that.
* | | | Merge pull request #89327 from mweinelt/go-neb-moduleAaron Andersen2020-06-16
|\ \ \ \ | | | | | | | | | | nixos/go-neb: init
| * | | | nixos/go-neb: initMartin Weinelt2020-06-02
| | | | |
* | | | | Merge pull request #90343 from flokli/hardware-u2f-removeFlorian Klink2020-06-15
|\ \ \ \ \ | |_|/ / / |/| | | | hardware/u2f: remove module
| * | | | hardware/u2f: remove moduleFlorian Klink2020-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | udev gained native support to handle FIDO security tokens, so we don't need a module which only added the now obsolete udev rules. Fixes: https://github.com/NixOS/nixpkgs/issues/76482
* | | | | nixos/corerad: use passAsFile while converting settings JSON to TOMLMatt Layher2020-06-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
* | | | | Merge pull request #89781 from mdlayher/mdl-corerad-settingsSilvan Mosberger2020-06-14
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | nixos/corerad: add settings option to supersede configFileMatt Layher2020-06-14
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
* | | | | Merge pull request #89772 from rnhmjoj/dnschainMichele Guerini Rocco2020-06-13
|\ \ \ \ \ | | | | | | | | | | | | dnschain: remove
| * | | | | dnschain: remove package and NixOS modulernhmjoj2020-06-13
| |/ / / / | | | | | | | | | | | | | | | | | | | | The software is unmaintained since ~2014 and the package can't be built anymore (issue #89205).
* | | | | Merge pull request #90157 from obsidiansystems/socket-based-ipfsJohn Ericson2020-06-12
|\ \ \ \ \ | | | | | | | | | | | | Add socket-based IPFS support
| * | | | | nixos/ipfs: only set listenstream when gateway/api is defaultMatthew Bauer2020-06-12
| | | | | |
| * | | | | nixos/ipfs: always expose socketsMatthew Bauer2020-06-12
| | | | | |
| * | | | | nixos/ipfs: actually use upstream systemd unitsMatthew Bauer2020-06-12
| | | | | |
| * | | | | nixos/ipfs: add startWhenNeeded optionMatthew Bauer2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it possible to only start IPFS when needed. So a user’s IPFS daemon only starts when they actually use it. A few important warnings though: - This probably shouldn’t be mixed with services.ipfs.autoMount since you want /ipfs and /ipns aren’t activated like this - ipfs.socket assumes that you are using ports 5001 and 8080 for the API and gateway respectively. We could do some parsing to figure out what is in apiAddress and gatewayAddress, but that’s kind of difficult given the nonstandard address format. - Apparently? this doesn’t work with the --api commands used in the tests. Of course you can always start automatically with startWhenNeeded = false, or just running ‘systemctl start ipfs.service’. Tested with the following test (modified from tests/ipfs.nix): import ./make-test-python.nix ({ pkgs, ...} : { name = "ipfs"; nodes.machine = { ... }: { services.ipfs = { enable = true; startWhenNeeded = true; }; }; testScript = '' start_all() machine.wait_until_succeeds("ipfs id") ipfs_hash = machine.succeed("echo fnord | ipfs add | awk '{ print $2 }'") machine.succeed(f"ipfs cat /ipfs/{ipfs_hash.strip()} | grep fnord") ''; }) Fixes #90145 Update nixos/modules/services/network-filesystems/ipfs.nix Co-authored-by: Florian Klink <flokli@flokli.de>
| * | | | | nixos/ipfs: consolidate services into one ipfs.serviceMatthew Bauer2020-06-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we had three services for different config flavors. This is confusing because only one instance of IPFS can run on a host / port combination at once. So move all into ipfs.service, which contains the configuration specified in services.ipfs. Also remove the env wrapper and just use systemd env configuration.
| * | | | | nixos/ipfs: remove unused auto migrate featureMatthew Bauer2020-06-11
| | | | | |
* | | | | | Merge pull request #87178 from hax404/teeworlds-module-testJörg Thalheim2020-06-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | nixos/{modules,tests}/teeworlds: init
| * | | | | | nixos/{modules,tests}/teeworlds: initGeorg Haas2020-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | add module and test
* | | | | | | Merge pull request #88718 from adisbladis/vmware-xorg-driver-defaultsadisbladis2020-06-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | services.x11.videoDrivers: Don't include vmware driver on non-x86 platforms
| * | | | | | | services.x11.videoDrivers: Don't include vmware driver by defaultadisbladis2020-06-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A better option for vmware guests is to set `virtualisation.vmware.guest.enable`.
* | | | | | | | nixos/prometheus-lnd-exporter: initMartin Milata2020-06-11
|/ / / / / / /
* | | | | | | Merge pull request #90077 from mdlayher/mdl-nixos-apcupsdWilliButz2020-06-11
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | nixos/prometheus-apcupsd-exporter: new module
| * | | | | | | nixos/prometheus-apcupsd-exporter: new moduleMatt Layher2020-06-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
* | | | | | | | Merge pull request #89810 from mdlayher/mdl-keylight-exporterWilliButz2020-06-11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | prometheus-keylight-exporter: init at 0.1.1
| * | | | | | | | nixos/prometheus-keylight-exporter: new moduleMatt Layher2020-06-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
* | | | | | | | | Merge pull request #90027 from Mic92/redisJörg Thalheim2020-06-10
|\ \ \ \ \ \ \ \ \ | |_|/ / / / / / / |/| | | | | | | | nixos/redis: add redis group
| * | | | | | | | nixos/redis: add redis groupJörg Thalheim2020-06-10
| | |_|_|_|_|/ / | |/| | | | | |
* | | | | | | | transmission: add libstdc++ and libgcc_s permissions to apparmor profileDavid Izquierdo2020-06-10
| | | | | | | |
* | | | | | | | nixos/opensmtpd: add a setgid wrapper for smtpctl (#89962)José Romildo Malaquias2020-06-10
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | The setgid is currently required for offline enqueuing, and unfortunately smtpctl is currently not split from sendmail so there's little running around it.
* | | | | | | Merge pull request #70327 from abbradar/synapse-pluginszimbatm2020-06-09
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Refactor Synapse plugins, add matrix-synapse-pam
| * | | | | | | matrix-synapse service: add plugins optionNikolay Amiantov2020-06-01
| | | | | | | |
* | | | | | | | nixos/gnome3: nixos-artwork -> pkgs.nixos-artworkzowoq2020-06-09
| |/ / / / / / |/| | | | | |
* | | | | | | Merge pull request #89762 from nlewo/nextcloud-oc_passFlorian Klink2020-06-08
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | nixos/nextcloud: preserve OC_PASS env variable in the occ wrapper
| * | | | | | nixos/nextcloud: preserve OC_PASS env variable in the occ wrapperAntoine Eiche2020-06-07
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The OC_PASS environment variable can be used to create a user with `occ user:add --password-from-env`. It is currently not possible to use the `nextcloud-occ` to "non-interactively" create a user since this variable is ignored by sudo.
* | | | | | Merge pull request #86163 from worldofpeace/wallpaper-refactorworldofpeace2020-06-07
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Gnome and Pantheon: install nixos wallpapers
| * | | | | nixos/pantheon: install nixos wallpaperworldofpeace2020-04-29
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #86146
| * | | | | nixos/gnome3: install nixos wallpapersworldofpeace2020-04-29
| | | | | |
| * | | | | nixos/lightdm: change background type to pathJan Tojnar2020-04-29
| | | | | |
| * | | | | nixos-artwork: add file path attributesworldofpeace2020-04-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes things so much easier, and we install to the path that both gnome-backgrounds and elementary-wallpapers install to.