summary refs log tree commit diff
path: root/nixos/modules
Commit message (Collapse)AuthorAge
* nix-info: include in nixos' default system-path, nixpkgs's channelGraham Christensen2017-10-14
|
* 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.
* | | 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.
* | | Merge pull request #30204 from lheckemann/powertop-fixJörg Thalheim2017-10-07
|\ \ \ | | | | | | | | powertop module: add kmod to path
| * | | powertop module: add kmod to pathLinus Heckemann2017-10-07
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | powertop attempt to load some kernel modules like msr by calling modprobe. This is the counterpart to 88e43eb39bcda5f8fdf41d566bc6799596177cd0 which has the powertop executable search PATH for modprobe rather than hardcoding /sbin, and actually adds the directory containing modprobe to its PATH for the systemd service.
* | | Safer defaults for immutable znc config (#30155)Guillaume Maudoux2017-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Safer defaults for immutable znc config I just lost all the options I configured in ZNC, because the mutable config was overwritten. I accept any suggestions on the way to implement this, but overwriting a mutable config by default seems weird. If we want to do this, we should ensure that ZNC does not allow to edit the config via the webmin when cfg.mutable is false. * Do not backup old config files. There seems to be little need for backups if mutable becomes a voluntary opt-out. * fixup
* | | Merge pull request #30171 from NeQuissimus/keybase_modulesGraham Christensen2017-10-07
|\ \ \ | |_|/ |/| | keybase/kbfs: Fix modules
| * | keybase: Fix modulesTim Steinbach2017-10-06
| |/
* | nixos/filesystems/ext: Don't try to load ext3 moduleTuomas Tynkkynen2017-10-07
| | | | | | | | | | This module doesn't exist since v4.3, where the ext3 driver was removed as ext4.ko can mount ext3 filesystems as well.