summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
...
* | | | smartd: set drive timeoutPeter Hoeg2017-10-14
| | | |
* | | | dnsmasq nixos: make sure it always runsPeter Hoeg2017-10-14
| | | | | | | | | | | | | | | | | | | | By default we only restart if the dnsmasq daemon fails but we introduce an option to always keep it running.
* | | | ssh: deprecate use of old DSA keysPeter Hoeg2017-10-14
| | | | | | | | | | | | | | | | They are not safe and shouldn't be used.
* | | | Merge pull request #30324 from florianjacob/firewall-clarify-loggingJörg Thalheim2017-10-13
|\ \ \ \ | | | | | | | | | | nixos/firewall: Rename misleading rejected to refused in logging
| * | | | nixos/firewall: Rename misleading rejected to refused in loggingFlorian Jacob2017-10-11
| |/ / / | | | | | | | | | | | | | | | | as that's used as general term for rejected or dropped packets in the rest of the config.
* | | / Revert "Simple proof of concept for how to do other types of services"Dan Peebles2017-10-13
| |_|/ |/| | | | | | | | | | | | | | | | | | | | This reverts commit 7c3253e519a572f90a907fc56bb6407da004b24c. I included this in another push by accident and never intended for it to be in mainline. See https://github.com/NixOS/nixpkgs/pull/26075 if you want more.
* | | Merge pull request #30356 from bflyblue/plex-1.9.5Franz Pletz2017-10-13
|\ \ \ | | | | | | | | plex: 1.9.2 -> 1.9.5
| * | | Fix warning about unknown escape sequencesShaun Sharples2017-10-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | systemd warns about: Ignoring unknown escape sequences: "/nix/store/8f0l1w9g7iv2gz63xzsxfl66ri1cfbkl-plex-1.9.5.4339/usr/lib/plexmediaserver/Plex\ Media\ Server From a discussion on the forums it seems the 'sh -c' is not needed: https://forums.plex.tv/discussion/216757/ubuntu-16-04-executable-path-contains-special-characters-error-with-systemd
* | | | Merge pull request #30364 from Ma27/compton/opacity-rules-supportFranz Pletz2017-10-13
|\ \ \ \ | | | | | | | | | | services.compton: add `opacityRules` option
| * | | | services.compton: add `opacityRules` optionMaximilian Bosch2017-10-12
| |/ / /
* | | | connman: do not restart after suspendYegor Timoshenko2017-10-13
| | | |
* | | | djbdns: fix root server list at build timeMatt McHenry2017-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | as suggested by @peterhoeg in https://github.com/NixOS/nixpkgs/commit/1b7e5eaa79241080eac2a0b79883a17c9e5f4731#commitcomment-24560631 fixes #30379
* | | | Revert "desktop-managers: do not leak feh to PATH"Profpatsch2017-10-13
| | | |
* | | | Merge pull request #30286 from yegortimoshenko/patch-2Peter Hoeg2017-10-13
|\ \ \ \ | | | | | | | | | | desktop-managers: do not leak feh to PATH
| * | | | desktop-managers: do not leak feh to PATHYegor Timoshenko2017-10-10
| | | | | | | | | | | | | | | | | | | | | | | | | feh is used to set background image for desktop managers that do not support it directly, however there is no need to include it in PATH. Fixes #17450.
* | | | | nixos user: reserve kodiPeter Hoeg2017-10-13
| | | | |
* | | | | Merge pull request #30172 from mayflower/cleanup/firmware-modulesFranz Pletz2017-10-12
|\ \ \ \ \ | |_|/ / / |/| | | | nixos: clean up wifi firmware & default kernel modules
| * | | | nixos: clean up kernel modulesFranz Pletz2017-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * the keyboard modules in all-hardware.nix are already defaults of boot.initrd.availableKernelModules * ide modules, hid_lenovo_tpkbd and scsi_wait_scan have been removed because they're not available anymore * i8042 was a duplicate (see few lines abowe)
| * | | | nixos/modules: clean up wireless firmware optionsFranz Pletz2017-10-07
| | |_|/ | |/| | | | | | | | | | | | | | | | | | All available options were just enabling hardware.enableRedistributableFirmware. There were nix files without modules which weren't referenced anywhere.
* | | | mate-power-manager: init at 1.18.0Patrick Chilton2017-10-12
| | | |
* | | | pykms: nixos modulePeter Hoeg2017-10-12
| | | |
* | | | nixos/docker-containers: Fix submodule usageaszlig2017-10-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The submodule of the "docker-containers" option isn't recognized as a proper submodule and thus neither properly type-checks nor are its options included in the manual. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | Merge branch 'phonon-backend-qt5'Thomas Tuegel2017-10-11
|\ \ \ \
| * | | | nixos/plasma5: install phonon backends for each current Qt versionThomas Tuegel2017-10-11
| |/ / / | | | | | | | | | | | | Fixes #27050, where the phonon backend was not found.
* | | / nixos: Fix output path generation of runInMachineaszlig2017-10-11
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced by a02bb00156086b45e68c1112008db506734f8649. The fix is done by disabling writableStore, because the latter will set up an overlayfs on the Nix store within the VM, which in turn will discard all the outputs of the resulting output path. However in runInMachine we actually *want* the contents of the generated path and also don't want a writable store within the VM (except of course for $out, which is writable anyway). I've added a small regression test to verifify the output in nixos/tests/run-in-machine.nix to make sure this won't break again in the future. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | Merge pull request #30312 from ↵Jörg Thalheim2017-10-11
|\ \ \ | | | | | | | | | | | | | | | | florianjacob/locatedb-fix-systemd-path-capabilities locatedb: fix startup fail due to systemd path capabilities
| * | | nixos/locatedb: fix first run when /var/cache doesn't existFlorian Jacob2017-10-11
| | | | | | | | | | | | | | | | | | | | by using systemd-tmpfiles. Also document what's happening there.
| * | | nixos/locatedb: path restriction options were renamedFlorian Jacob2017-10-11
| | | | | | | | | | | | | | | | in systemd 231.
* | | | Merge pull request #30280 from woffs/speedJörg Thalheim2017-10-11
|\ \ \ \ | |/ / / |/| | | nix-daemon: mention speedFactor in example
| * | | nix-daemon: mention speedFactor in exampleFrank Doepper2017-10-10
| | |/ | |/|
* | | nixos: Fix detection of btrfs root volumeaszlig2017-10-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced by 801c920e95642ec663d4aa486c81e5443e25b182. Since then, the btrfsSimple subtest of the installer VM test fails with: Btrfs did not return a path for the subvolume at / The reason for this is that the output for "btrfs subvol show" has changed between version 4.8.2 and 4.13.1. For example the output of "btrfs subvol show /" in version 4.8.2 was: / is toplevel subvolume In version 4.13.1, the output now is the following and thus the regular expressions used in nixos-generate-config.pl and install-grub.pl now match (which results in the error mentioned above): / Name: <FS_TREE> UUID: - Parent UUID: - Received UUID: - Creation time: - Subvolume ID: 5 Generation: 287270 Gen at creation: 0 Parent ID: 0 Top level ID: 0 Flags: - Snapshot(s): In order to fix this I've changed nixos-generate-config.pl and install-grub.pl, because both use "btrfs subvol show" in a similar vein, so the regex for parsing the output now doesn't match anymore whenever the volume path is "/", which should result in the same behaviour as we had with btrfs-progs version 4.8.2. Tested against the btrfsSimple, btrfsSubvols and btrfsSubvolDefault subtests of the installer VM test and they all succeed now. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | unbound: fix typo in systemd BeforeYegor Timoshenko2017-10-10
| | |
* | | nixos/lighttpd: add missing modules to allKnownModulesBjørn Forsman2017-10-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The output of ./configure shows all modules/plugins, both enabled and disabled. With this info we can finally build the _complete_ list of modules. We were missing these: mod_authn_gssapi mod_authn_ldap mod_geoip (I hit this as I was building lighttpd with ldap support and the NixOS module said ldap was unsupported, due to these missing entries in allKnownModules.)
* | | mattermost: create role and db with postgres superuserelseym2017-10-10
| | | | | | | | | | | | | | | Recently, the postgres superuser name has changed. Using the configured and correct username here fixes database initialisation.
* | | nixos/xautolock: rewrite and add some optionsWilliButz2017-10-10
|/ /
* | Enable command-not-foundEelco Dolstra2017-10-10
| | | | | | | | | | 5a5db609e5bd83bc589f36eef394f3ad172d6648 disabled it by default, which may have been unintentional. mkEnableOption considered harmful.
* | Set $NIX_DEBUG_INFO_DIRS when environment.enableDebugInfo is enabledEelco Dolstra2017-10-10
| | | | | | | | | | | | This allows it to co-exist with other debug info directories, such as the one used by dwarffs (https://github.com/edolstra/dwarffs/blob/master/module.nix).
* | Merge pull request #30261 from Ekleog/fcron-hardlinkJörg Thalheim2017-10-09
|\ \ | | | | | | fcron module: fix use with hardlink-optimized store
| * | fcron module: fix use with hardlink-optimized storeLéo Gaspard2017-10-09
| | |
* | | nixos/zsh-syntax-highlighting: refactorWilliButz2017-10-09
| | |
* | | nixos: minor X11 option description improvements (#30035)Benjamin Staffin2017-10-09
| | |
* | | Reserve uid/gids for kanboardShea Levy2017-10-09
|/ /
* | nixos/fcron: service needs fcron in PATHJoerg Thalheim2017-10-09
| | | | | | | | | | otherwise fcronsighup is not found. Set PATH to /run/current-system/sw/bin does not seems to be used by service file anyway.
* | kbfs: Add package in moduleTim Steinbach2017-10-08
| |
* | Merge pull request #30216 from bachp/minio-exporterJörg Thalheim2017-10-08
|\ \ | | | | | | Minio exporter
| * | nixos/prometheus-minio-exporter: only inherit keys from minio if setJoerg Thalheim2017-10-08
| | |
| * | prometheus-minio-exporter service: default to local minio server if enabledPascal Bach2017-10-08
| | |
| * | prometheus-minio-exporter service: init versionPascal Bach2017-10-08
| | |
* | | Merge pull request #30183 from Mic92/openafsJörg Thalheim2017-10-08
|\ \ \ | | | | | | | | openafs-client: don't remove kernel module on stop
| * | | openafs-client: don't remove kernel module on stopJoerg Thalheim2017-10-07
| |/ / | | | | | | | | | | | | Otherwise it cannot re-insert the kernel module after a kernel upgrade when boot kernel != running kernel.