about summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* kernel: Remove CopperheadTim Steinbach2018-09-03
| | | | The patches are unmaintained and suggest a false sense of security
* nix: 2.0.4 -> 2.1Eelco Dolstra2018-09-03
|
* nixos: Document option description changesaszlig2018-09-03
| | | | | | | | | | | This adds a release notes entry to make users (and especially developers) aware so they no longer need to use </para><para> in option descriptions as this is now done automatically on every two consecutive newlines. More details can be found in the commit message of f865d0feabfafbb30a9e. Signed-off-by: aszlig <aszlig@nix.build>
* release-notes: Adds 19.03 — KoiSamuel Dionne-Riel2018-09-02
|
* Merge pull request #45930 from aszlig/option-description-parbreakGraham Christensen2018-09-02
|\ | | | | nixos: Split paras by \n\n in option descriptions
| * nixos: Split paras by \n\n in option descriptionsaszlig2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | What annoyed me for a long time was the fact, that in order to break into a new paragraph, you need to insert </para><para> in the description attribute of an option. Now we will automatically create <para/> elements for every block that is separated by two consecutive newlines. I first tried to do this within options-to-docbook.xsl, but it turns out[1] that this isn't directly possible with XSLT 1.0, so I added another XSLT file that postprocesses the option descriptions that are now enclosed in <nixos:option-description/> by options-to-docbook.xsl. The splitting itself is a bit more involved, because we can't simply split on every \n\n because we'd also split text nodes of elements, for example: <screen><![CDATA[ one line another one ]]></screen> This would create one <para/> element for "one line" and another for "another line", which we obviously don't want because <screen/> is used to display verbatim contents of what a user is seeing on the screen. So what we do instead is splitting *only* the top-level text nodes within the outermost <para/> and leave all elements as-is. If there are more than one <para/> elements at the top-level, we simply don't process it at all, because the description then already contains </para><para>. https://www.mhonarc.org/archive/html/xsl-list/2012-09/msg00319.html Signed-off-by: aszlig <aszlig@nix.build> Cc: @edolstra, @domenkozar
* | nixos docs: more IDsGraham Christensen2018-09-02
| |
* | nixos docs: more IDsGraham Christensen2018-09-02
| |
* | Merge pull request #45912 from xeji/p/dhcpcdSamuel Dionne-Riel2018-09-02
|\ \ | | | | | | dhcpcd: 6.11.5 -> 7.0.8
| * | nixos/tests/networking.*.macvlan: disable reverse path checkUli Baum2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | Generated reverse path filtering rules for the macvlan interface seem to be incorrect, causing the test to fail - sometimes or always, depending on the dhcpcd version used. - Disable reverse path checking temporarily to avoid blocking the channel - Print more diagnostic information for debugging
* | | Added an example for environment.variable. (#45956)Christopher Birkbeck2018-09-02
| | |
* | | Merge pull request #45911 from samueldr/fix/nixos-help-browserGraham Christensen2018-09-02
|\ \ \ | | | | | | | | nixos/manual: nixos-help knows about colon-separated BROWSER
| * | | nixos/manual: nixos-help knows about colon-separated BROWSERSamuel Dionne-Riel2018-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the semantics as understood by `xdg-open`. Using these semantics on a non-colon-separated variable works because it acts as if it was a one element long list. This fixes an issue where it would try to exec `google-chrome-beta:google-chrome:chromium:firefox` on a system configured with these semantics in mind.
* | | | Merge pull request #44526 from ↵Graham Christensen2018-09-02
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | samueldr/feature/actiavation-failure-identification nixos/activation: Identifies the snippet that failed
| * | | | nixos/activation: Identifies the snippet that failedSamuel Dionne-Riel2018-08-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows a developer to better identify in which snippet the failure happened. Furthermore, users seeking help will have more information available about the failure.
* | | | | wireguard: change preStop to postStop, require network.target (#45569)Yorick2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * wireguard: change preStop to postStop, require network.target * wireguard service: network.target -> network-online.target
* | | | | install-grub.pl: avoid double '/' in menu.lst and grub.conf (#45907)volth2018-09-02
| | | | | | | | | | | | | | | Although double '/' in paths is not a problem for GRUB supplied with nixpkgs, sometimes NixOS's grub.conf read by external GRUB and there are versions of GRUB which fail
* | | | | nixos/release.nix: disable blivet test (#45931)xeji2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | - has been broken since 2017-07-24 - no attempts to fix it - it tests an outdated blivet version (Oct 2014)
* | | | | nixos/displayManagers/auto: allow root auto-loginUli Baum2018-09-02
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | The switch from slim to lightdm in #30890 broke some nixos tests because lightdm by default doesn't permit auto-login for root. Override /etc/pam.d/lightdm-autologin to allow it.
* | | | bird: set reloadIfChanged to true (#45924)Florian Klink2018-09-02
| | | | | | | | | | | | | | | | This will trigger the reload instead of restart command if a definition changes, which is much more desireable for a routing daemon.
* | | | Merge pull request #39142 from teto/nm_dispatchersSamuel Dionne-Riel2018-09-01
|\ \ \ \ | | | | | | | | | | [RDY] networkmanager: enrich dispatcher PATH
| * | | | networkmanager: make hooks easier to useMatthieu Coudron2018-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | First change is to override the nm-dispatcher systemd service so that it puts coreutils (wc/env/...) and iproute in PATH. Second change is to make sure userscripts have the execute bit.
* | | | | Merge pull request #44347 from zhangyoufu/patch-28620Graham Christensen2018-09-01
|\ \ \ \ \ | | | | | | | | | | | | fix vlan interface bring up on boot
| * | | | | fix commentFranz Pletz2018-08-13
| | | | | |
| * | | | | add comment for issue #28620Youfu Zhang2018-08-10
| | | | | |
| * | | | | fix vlan interface bring up on bootYoufu Zhang2018-08-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when the parent interface of a vlan interface is not up (yet), ip link cannot bring the vlan interface up the vlan interface will be automatically brought up when the parent interface is up later fix NixOS/nixpkgs#28620
* | | | | | nixos/tests/flatpak: explicitly disable gdm to fix evalUli Baum2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The switch to lightdm as default display manager in #30890 broke eval of the flatpak test. Since the test uses the auto display manager (lightdm), gdm must now be explicitly disabled.
* | | | | | nixos/nginx: fix type of sslTrustedCertificate optionUli Baum2018-09-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The option was added in 1251b34b5bbcd11a7a2974df7bada5d6d47b985d with type `types.path` but default `null`, so eval failed with the default setting. This broke the acme and certmgr tests. cc: @vincentbernat @fpletz
* | | | | | nixos docs: footnotes: give IDsGraham Christensen2018-09-01
| | | | | |
* | | | | | makefile: auto-format xml docs outside of the doc subdirGraham Christensen2018-09-01
| | | | | |
* | | | | | nixos docs: give IDs to thingsGraham Christensen2018-09-01
| | | | | |
* | | | | | nixos docs: Give sections IDsGraham Christensen2018-09-01
| | | | | |
* | | | | | nixos-generate-config.pl: remove executable bitUli Baum2018-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it was erroneously set in cb1ca420092c8854592afcf1cc0245b7245358f1 although this file isn't executable before patching shebangs.
* | | | | | services.xserver.windowManager.session: handle duplicate names (#37690)volth2018-09-01
| | | | | |
* | | | | | nixos-generate-config: fix perl quoting after cb1ca42Vladimír Čunát2018-09-01
| | | | | |
* | | | | | Merge #45910: Fix i686 installer iso buildVladimír Čunát2018-09-01
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | |
| * | | | | nixos/iso-image.nix: fixes i686 installer iso build.Samuel Dionne-Riel2018-09-01
| | |_|_|/ | |/| | | | | | | | | | | | | Fixes #45908
* | | | | nixos/doc: add instructions for installation behind a proxy (#45854)Venkateswara Rao Mandela2018-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The instructions to install nixos behind a proxy were not clear. While one could guess that setting http_proxy variables can get the install rolling, one could end up with an installed system where the proxy settings for the nix-daemon are not configured. This commit updates the documentation with 1. steps to install behind a proxy 2. configure the global proxy settings so that nix-daemon can access internet. 3. Pointers to use nesting.clone in case one has to use different proxy settings on different networks.
* | | | | Merge pull request #30890 from Lassulus/slim-lightdmxeji2018-09-01
|\ \ \ \ \ | | | | | | | | | | | | display-managers: make lightdm the default
| * | | | | xserver.displayManager: change defaultlassulus2018-08-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch from slim to lightdm as the display-manager. If plasma5 is used as desktop-manager use sdddm. If gnome3 is used as desktop-manager use gdm. Based on #12516
* | | | | | stage-1-init.sh: do not check mounted filesystems (#45891)volth2018-09-01
| | | | | | | | | | | | | | | | | | fsck of a mounted filesystems fails with error code 8 "Operational error" and halts the boot processing
* | | | | | Merge pull request #45875 from wizeman/u/fix-transmission-mod2Jörg Thalheim2018-09-01
|\ \ \ \ \ \ | | | | | | | | | | | | | | nixos/transmission: fix AppArmor profile to include keyutils
| * | | | | | nixos/transmission: fix AppArmor profile to include keyutilsRicardo M. Correia2018-08-31
| | | | | | |
* | | | | | | nixos/tests/installer: add missing system.extraDependenciesUli Baum2018-09-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 1b11fdd0df2254a762a16d04e603ba99e42169c0 the test VM depends on some extra packages to build the system to be installed. This broke the installer test as it tried to download/build these packages in a sandbox.
* | | | | | | Merge #45774: linux_testing_bcachefs: upgrade, add testsVladimír Čunát2018-09-01
|\ \ \ \ \ \ \
| * | | | | | | nixos/tests/bcachefs: initOkina Matara2018-08-31
| | | | | | | |
* | | | | | | | Merge #45731: artwork update (replacing old logo)Vladimír Čunát2018-09-01
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | |
| * | | | | | | nixos/grub: Uses the new artwork as the default option.Samuel Dionne-Riel2018-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also includes a set of defaults *for this option*, where when not used, other saner defaults are used.
| * | | | | | | nixos/grub: Adds background color and mode optionsSamuel Dionne-Riel2018-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The background color option is self-explanatory. The mode is either `normal` or `stretch`, they are as defined by GRUB, where normal will put the image in the top-left corner of the menu, and stretch is the default, where it stretches the image without consideration for the aspect ratio. * https://www.gnu.org/software/grub/manual/grub/grub.html#background_005fimage
| * | | | | | | Reviews use of old nixos wallpaper to use one with the new logo.Samuel Dionne-Riel2018-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The wallpaper used is *structurally compatible* with the other one, meaning that the logo is at the same location, and not bigger. It has one drawback: the logo is brighter, which clashes with the grub usage. This is to be fixed with new options in grub.