summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
...
* | Load default Fontconfig settings into Xresources for XftThomas Tuegel2014-12-08
| |
* | Rewrite Fontconfig NixOS moduleThomas Tuegel2014-12-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Details: * The option `fonts.enableFontConfig` has (finally) been renamed `fonts.fontconfig.enable`. * Configurations are loaded in this order: first the Fontconfig-upstream configuration is loaded, then the NixOS-specific font directories are set, the system-wide default configuration is loaded, and finally the user configuration is loaded (if enabled). * The NixOS options `fonts.fontconfig.defaultFonts.monospace`, `fonts.fontconfig.defaultFonts.sansSerif` and `fonts.fontconfig.defaultFonts.serif` are added to allow setting the default system-wide font used for these generic faces. The defaults are the appropriate faces from the DejaVu collection because of their comprehensive Unicode coverage, clean rendering, and excellent legibility. * The NixOS option `fonts.fontconfig.antialias` can be used to disable antialiasing (it is enabled by default). * The options `fonts.fontconfig.subpixel.rgba` and `fonts.fontconfig.subpixel.lcdfilter` control the system-wide default settings for subpixel order and LCD filtering algorithm, respectively. * `fonts.fontconfig.hinting.enable` can be used to disable TrueType font hinting (it is enabled by default). `fonts.fontconfig.hinting.autohint` controls the FreeType autohinter. `fonts.fontconfig.hinting.style` controls the hint style; it is "full" by default. * User configurations can be disabled system-wide by setting `fonts.fontconfig.includeUserConf = false`. They are enabled by default so users can set Fontconfig options in the desktop environment of their choice.
* | nixos/fleet: fix typoJaka Hudoklin2014-12-08
|/
* nixos/fleet: enable etcd and docker by defaultJaka Hudoklin2014-12-08
|
* enable bash autocomplete by defaultDomen Kožar2014-12-08
|
* Merge pull request #5255 from offlinehacker/nixos/fleetJaka Hudoklin2014-12-08
|\ | | | | nixos: add fleet module
| * nixos: add fleet moduleJaka Hudoklin2014-12-07
| |
| * nixos/systemd: ignore null environment optionsJaka Hudoklin2014-12-07
| |
* | installer tests: don't rely on swap.target until systemd bug is fixedDomen Kožar2014-12-07
| |
* | Update obtaining.xmlcillianderoiste2014-12-07
|/ | | Avoid pointing to the wiki for the default installation method (which points back to the manual anyway). Use more words.
* nixos/kubernetes: fix testsJaka Hudoklin2014-12-07
|
* nfs-utils: align attrname with pkgnameBjørn Forsman2014-12-06
| | | | | nfsUtils => nfs-utils. Keep copy of old attribute for backward compatibility.
* nixos: overhaul Tor moduleAustin Seipp2014-12-06
| | | | | | | | | | | | | | | This overhauls the Tor module in a few ways: - Uses systemd service files, including hardening/config checks - Removed old privoxy support; users should use the Tor Browser instead. - Remove 'fast' circuit/SOCKS port; most users don't care (and it adds added complexity and confusion) - Added support for bandwidth accounting - Removed old relay listenAddress option; taken over by portSpec - Formatting, description, code cleanups. Signed-off-by: Austin Seipp <aseipp@pobox.com>
* nixos: rewrite torsocks moduleAustin Seipp2014-12-06
| | | | | | | | | | | Rather than trying to override the 'torsocks' executable in $PATH, the new module instead properly configures `/etc/tor/torsocks.conf` and puts the normal `torsocks` executable in $PATH so it can work out of the box. As a bonus, I think this module actually works now, because the torsocks configuration has changed a lot from when this was written, it seems... Signed-off-by: Austin Seipp <aseipp@pobox.com>
* nixos: Remove torify moduleAustin Seipp2014-12-06
| | | | | | | 'torify' now ships with the tor bundle itself; and using torsocks is recommended over tsocks (torify will use torsocks automatically.) Signed-off-by: Austin Seipp <aseipp@pobox.com>
* nixos/synergy: Don't generate units unecessarilyWilliam A. Kennington III2014-12-05
|
* nixos/unifi: Ensure stateDir is mounted before proceedingWilliam A. Kennington III2014-12-05
|
* fix installer testsDomen Kožar2014-12-05
|
* Merge PR #5235, fix predictable network interfacesLuca Bruno2014-12-05
|\
| * Fix filename for udev network interface rulesTino Breddin2014-12-05
| | | | | | | | | | | | | | | | | | | | From http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/ You disable the assignment of fixed names, so that the unpredictable kernel names are used again. For this, simply mask udev's rule file for the default policy: ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules (since v209: this file was called 80-net-name-slot.rules in release v197 through v208)
* | nixos/installer: Fix swap device overrideWilliam A. Kennington III2014-12-04
|/
* nixos: iPXE client for GRUBEmery Hemingway2014-12-04
| | | | fix bug in grub/install-grub.pl that would replace @bootRoot@ with an invalid string
* nixos/installer: Override swap devices so tests don't failWilliam A. Kennington III2014-12-03
| | | | | | | | This patch should be reverted if either: - systemd fixes the multi-swapon issue. https://bugs.freedesktop.org/show_bug.cgi?id=86930 - If we disable the autogeneration of swap and vfat units within systemd.
* whitespace change to restart kde4 testGeorges Dubus2014-12-03
|
* Add iwlegacy firmware for old Intel wireless cardsThomas Tuegel2014-12-03
|
* nixos: add chronos serviceJaka Hudoklin2014-12-03
|
* nixos/peerflix: fix enable option descriptionJaka Hudoklin2014-12-03
|
* whitespace change for kde4 test to force rebuild :(Domen Kožar2014-12-03
|
* fixes #5198Domen Kožar2014-12-02
|
* mesos: add docker supportJaka Hudoklin2014-12-02
|
* Revert "Merge pull request #5184 from daogames/tb/fix-systemd-udev-net-rules"Luca Bruno2014-12-02
| | | | | This reverts commit ddeee82b314505a02752d03c91696b491d41986f, reversing changes made to 75ead8812b6bfb7b5193c6f487562bc9af0dd334.
* Merge pull request #5184 from daogames/tb/fix-systemd-udev-net-ruleslethalman2014-12-02
|\ | | | | Fix filename for udev network interface rules
| * Fix filename for udev network interface rulesTino Breddin2014-12-01
| | | | | | | | | | | | | | | | | | | | From http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/ You disable the assignment of fixed names, so that the unpredictable kernel names are used again. For this, simply mask udev's rule file for the default policy: ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules (since v209: this file was called 80-net-name-slot.rules in release v197 through v208)
* | nixos/tests: Fix nfsWilliam A. Kennington III2014-12-02
| |
* | nixos: Add network-pre.target and adjust firewall start orderingWilliam A. Kennington III2014-12-01
| |
* | nixos/nfs: Fix dependency orderingWilliam A. Kennington III2014-12-01
| |
* | iwlwifi: Split into separate package with more up to date firmwareWilliam A. Kennington III2014-12-01
| |
* | Revert $GIT_SSL_CAINFO removalwmertens2014-12-01
| | | | | | Users have an older git in their user environment and it doesn't work without it. We should keep it around for a while.
* | nixos/docker: fix module, add simple testJaka Hudoklin2014-12-01
| |
* | nixos/mesos: restart on failureJaka Hudoklin2014-12-01
| |
* | nixos/mesos: convert quorum to stringJaka Hudoklin2014-12-01
| |
* | nixos/peerflix: add test to release.nixJaka Hudoklin2014-12-01
| |
* | nixos: add peerflix moduleJaka Hudoklin2014-12-01
| |
* | nixos/networking: Fix more harmless errorsWilliam A. Kennington III2014-12-01
| |
* | Merge pull request #5189 from NixOS/almirDomen Kožar2014-11-30
|\ \ | | | | | | almir: pin the sqlalchemy version used by zope.sqlalchemy to 8
| * | Almir module: set a working default sqlalchemy_engine_urlCillian de Róiste2014-11-30
| | |
* | | nixos/tests: add networking-proxy.nix to releaseLuca Bruno2014-11-30
| | |
* | | Improve readability - from ↵Antoine R. Dumont2014-11-30
| | | | | | | | | | | | https://github.com/NixOS/nixpkgs/pull/5058#discussion_r21043552
* | | Ensure nix-daemon sees the proxy defined optionsAntoine R. Dumont2014-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Not sure about this one) Here are the incomplete and a little contradictory discussions about it (or at least my interpretations of them): - https://github.com/NixOS/nixpkgs/pull/5058#discussion_r20830855 - https://github.com/NixOS/nixpkgs/pull/5058#discussion_r21043552 cc @edolstra @wmertens What did I get wrong?
* | | Introduce a dedicated networking.proxy optionAntoine R. Dumont2014-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following the discussion NixOS#5021: - obsolete the nix.proxy option - add the networking.proxy option - open a default no_proxy environment variable - add a rsync option - Manual tests ok. - Automatic tests ok. Amended by lethalman to simplify the option descriptions.