about summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Merge pull request #90391 from samueldr/fix/manual-zstd-noteSamuel Dionne-Riel2020-06-15
|\ | | | | nixos/release-notes: Amend note about image compression
| * nixos/release-notes: Amend note about image compressionSamuel Dionne-Riel2020-06-15
| |
* | 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
* | | Merge master into staging-nextFrederik Rietdijk2020-06-15
|\ \ \
| * \ \ Merge pull request #90380 from mdlayher/mdl-corerad-passasfileSilvan Mosberger2020-06-15
| |\ \ \ | | | | | | | | | | nixos/corerad: use passAsFile while converting settings JSON to TOML
| | * | | nixos/corerad: use passAsFile while converting settings JSON to TOMLMatt Layher2020-06-14
| | | |/ | | |/| | | | | | | | | Signed-off-by: Matt Layher <mdlayher@gmail.com>
| * | | Merge pull request #90297 from lheckemann/other-distro-tool-install-commandMaximilian Bosch2020-06-15
| |\ \ \ | | |/ / | |/| | manual: use less weird way of installing nixos tools
| | * | manual: use less weird way of installing nixos toolsLinus Heckemann2020-06-14
| | | |
| * | | 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 #90261 from prusnak/installer-zstd-rmPeter Hoeg2020-06-14
| |\ \ \ | | | | | | | | | | images: remove original files when using zstd for compression
| | * | | images: remove original files when using zstd for compressionPavol Rusnak2020-06-14
| | | |/ | | |/|
| * | | Merge pull request #89772 from rnhmjoj/dnschainMichele Guerini Rocco2020-06-13
| |\ \ \ | | | | | | | | | | dnschain: remove
| | * | | nixos/release-notes: document dnschain removalrnhmjoj2020-06-13
| | | | |
| | * | | dnschain: remove package and NixOS modulernhmjoj2020-06-13
| | | |/ | | |/| | | | | | | | | | | | | The software is unmaintained since ~2014 and the package can't be built anymore (issue #89205).
| * | | nixos/timesyncd: Make dbus-activatibleArian van Putten2020-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream has this alias too; so that dbus activation works. What I don't fully understand is why this would ever be useful given this unit is already started way in early boot; even before dbus is up. But lets just keep behaviour similar to upstream and then ask these questions to upstream.
| * | | nixos/networkd: Make activatible through dbus and netlinkArian van Putten2020-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this systemd buffers netlink messages in early boot from the kernel itself; and passes them on to networkd for processing once it's started. Makes sure no routing messages are missed. Also makes an alias so that dbus can activate this unit. Upstream has this too.
| * | | nixos/resolved: Include dbus alias of resolved unitArian van Putten2020-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make dbus socket activation for it work When `systemd-resolved` is restarted; this would lead to unavailability of DNS lookups. You're supposed to use DBUS socket activation to buffer resolved requests; such that restarts happen without downtime
* | | | Merge master into staging-nextFrederik Rietdijk2020-06-13
|\| | |
| * | | nixos/lib/make-disk-image.nix: VDI supportEmery Hemingway2020-06-13
| | | |
| * | | 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 #89662 from aanderse/ssmtpMaximilian Bosch2020-06-12
| |\ \ \ \ \ | | | | | | | | | | | | | | nixos/ssmtp: add settings option
| | * | | | | nixos/ssmtp: drop authPass option in favor of authPassFile, or ↵Aaron Andersen2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | services.ssmtp.settings.AuthPass if absolutely required
| | * | | | | nixos/ssmtp: add settings optionAaron Andersen2020-06-07
| | |/ / / /
| * | | | | Merge pull request #89159 from datafoo/fix-issue-89158Michele Guerini Rocco2020-06-12
| |\ \ \ \ \ | | | | | | | | | | | | | | nixos/networking: check interface state files exist before acting on them
| | * | | | | nixos/networking: check interface state files exist before acting on themdatafoo2020-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #89158
* | | | | | | Merge master into staging-nextFrederik Rietdijk2020-06-12
|\| | | | | |
| * | | | | | 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 #89540 from Patryk27/fixes/lxd-lxcfsMatthew Bauer2020-06-11
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix `lxd`, so that it works with `lxcfs`
| | * | | | | | lxd: Add testsPatryk Wychowaniec2020-06-08
| | | | | | | |
| | * | | | | | lxd: When `lxcfs` is enabled, start `lxd` with explicit ↵Patryk Wychowaniec2020-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `LXD_LXC_TEMPLATE_CONFIG`
| | * | | | | | lxd: Add proper support for `nftables`Patryk Wychowaniec2020-06-05
| | | | | | | |
| * | | | | | | Merge pull request #90128 from vcunat/p/locales-priorityMatthew Bauer2020-06-11
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | nixos i18n.supportedLocales: increase systemPackages priority
| | * | | | | | | nixos i18n.supportedLocales: increase systemPackages priorityVladimír Čunát2020-06-11
| | | |_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | https://discourse.nixos.org/t/conflict-between-glibc-and-glibclocales-workaround-inside/7608
| * | | | | | | 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