about summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Revert "Making nixos keep a ref to its stdenv"Lluís Batlle i Rossell2015-05-09
| | | | | | | | | | | | | | This reverts commit d170c98d13a7b622c57c9b9f727a6bfec95a9181. niksnut argues that we need smaller system closures, not bigger. So users facing the trouble of getting gcc rebuilds after nix-collect-garbage for any minimal nixos configuration change should use other means of not losing the stdenv output. One way is to keep one somewhere: nix-build -A stdenv -o stdenv '<nixpkgs>'. Another may be to use nix.conf options like gc-keep-outputs, gc-keep-derivations or env-keep-derivations.
* Making nixos keep a ref to its stdenvLluís Batlle i Rossell2015-05-09
| | | | | | | | This will help a lot on ARM, where nix-collect-garbage erases gcc; then, any change to a small system config file requires rebuilding gcc again. I don't know why it does not happen on x86. Maybe it just pulls the gcc from hydra, if garbage is collected.
* Raspberry Pi 2 changes to make it boot.Lluís Batlle i Rossell2015-05-09
| | | | | | | | | It boots, but some things still don't work: 1) Installation of DTBs 2) Boot of initrd Booting still needs a proper config.txt in /boot, which could probably be managed by NixOS.
* Merge branch 'master' into stagingWilliam A. Kennington III2015-05-08
|\
| * Revert restartIfChanged on fetch-ec2-data, as it breaks deployments that set ↵Rob Vermaas2015-05-07
| | | | | | | | | | | | ec2.metadata = true, as the existing (default) blackhole will not be cleared. (cherry picked from commit ccf672ca6b055e5e862e45b65d122754c16cf7d1)
* | Merge remote-tracking branch 'upstream/master' into stagingWilliam A. Kennington III2015-05-07
|\|
| * Merge pull request #7482 from qknight/mysql_socket_permissionsJoachim Schiele2015-05-07
| |\ | | | | | | /run/mysqld now 0755 (instead 0700)
| | * mysql: /run/mysql now 0755 (instead 0700)Joachim Schiele2015-05-07
| | | | | | | | | | | | see https://github.com/NixOS/nixpkgs/pull/7482
| * | postfix service: description enhancementPascal Wittmann2015-05-06
| | | | | | | | | | | | closes #7651
| * | Sane default configuration for sabnzbd moduleStephen Weinberg2015-05-05
| | | | | | | | | | | | | | | Added option to set user. Use unpriviledged user by default. Add sane default for configuration location.
| * | tarsnap: fix up permissions of existing cache directoriesAristid Breitkreuz2015-05-04
| | |
| * | fetch-ec2-data: Don't restartEelco Dolstra2015-05-04
| | | | | | | | | | | | | | | This service only needs to run once on system startup, so it doesn't need to be restarted by switch-to-configuration.
| * | Style fixEelco Dolstra2015-05-04
| | |
| * | TypoEelco Dolstra2015-05-04
| | |
| * | Merge pull request #7601 from cstrahan/iso-name-fixlethalman2015-05-04
| |\ \ | | | | | | | | nixos: fix infinite recursion in isoImage.isoName
| | * | nixos: fix infinite recursion in isoImage.isoNameCharles Strahan2015-04-27
| | | |
| * | | add support for pam_u2f to nixos pam modulePhilip Potter2015-05-03
| | | | | | | | | | | | | | | | | | | | This adds support for authenticating using a U2F device such as a yubikey neo.
| * | | Correct spellingSteven Shaw2015-05-03
| | | |
| * | | Merge pull request #7565 from offlinehacker/nixos/confd/moduleDomen Kožar2015-05-02
| |\ \ \ | | | | | | | | | | nixos: add confd module
| | * | | nixos: add confd moduleJaka Hudoklin2015-04-25
| | | | |
* | | | | plasma53: patch upstream startkdeThomas Tuegel2015-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rather than shipping our own startkde script, we will go back to patching upstream's script. This will be less confusing to potential contributors.
* | | | | Merge remote-tracking branch 'upstream/master' into stagingWilliam A. Kennington III2015-05-01
|\| | | |
| * | | | mbpfan: service improvementsCharles Strahan2015-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | * add verbosity setting * don't set mbpfan as a setuid program
| * | | | mgpfan: new serviceCharles Strahan2015-04-30
| | | | |
| * | | | Merge pull request #7636 from bramd/brlttyJascha Geerds2015-05-01
| |\ \ \ \ | | | | | | | | | | | | Added BRLTTY package
| | * | | | Document the brltty servicve in release notesBram Duvigneau2015-05-01
| | | | | |
| | * | | | Added BRLTTY packageBram Duvigneau2015-04-29
| | | | | |
| * | | | | networkd: Fix evaluation of systemd.network units.aszlig2015-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During the refactor of the networkd stuff in f8dbe5f, a lot of the options are now needed by systemd.nix as well as networkd.nix but weren't moved by that commit as well. For now, this fixes all networkd VM tests except for the macvlan one and thus it should fix #7505 for at least DHCP-based configuration. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * | | | | networkd: Fix disabled networkd units.aszlig2015-04-30
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In f8dbe5f, the default value for networking unit "enabled" option suddenly flipped to false. I have no idea of whether this happened by accident, but I'm setting it to true again, because it essentially breaks systemd networking support and we have systemd.network.enable to have a "turn the world off" switch. And of course, because the mentioned commit obviously wasn't done with even a run of the simplest run of one of the network VM tests, we now get an evaluation error if we switch useNetworkd to true. Fixes the core issue of #7505. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * | | | nixos-install: correctly detect stdinDomen Kožar2015-04-29
| | | | |
* | | | | Merge remote-tracking branch 'upstream/master' into stagingThomas Tuegel2015-04-29
|\| | | |
| * | | | Work around infinite recursion issue in nixops.Rob Vermaas2015-04-29
| | | | |
| * | | | Merge pull request #7605 from ip1981/wikiArseniy Seroka2015-04-28
| |\ \ \ \ | | | | | | | | | | | | Mediawiki updates
| | * | | | Mediawiki 1.23.9Igor Pashev2015-04-28
| | | | | |
| | * | | | Apache servedFiles: fixed a typo in exampleIgor Pashev2015-04-28
| | | | | |
| | * | | | wiki: do not rewrite served filesIgor Pashev2015-04-28
| | | |/ / | | |/| |
| * | | | nixos.system_tarball_pc: Fix evaluationRicardo M. Correia2015-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It was broken due to 57b05765c968c1ad5245c59513d11d679ed7130d. ZFS requires `networking.hostId` to be set.
| * | | | i2p: add service to module-listHerwig Hochleitner2015-04-28
| | | | |
| * | | | Merge pull request #7545 from offlinehacker/pkgs/kubernetes/fixesJaka Hudoklin2015-04-28
| |\ \ \ \ | | | | | | | | | | | | kubernetes: update to 0.15, module fixes
| | * | | | nixos/kubernetes: fix moduleJaka Hudoklin2015-04-25
| | | |/ / | | |/| |
| * | | | Merge pull request #7555 from offlinehacker/nixos/nginx/reloadJaka Hudoklin2015-04-28
| |\ \ \ \ | | | | | | | | | | | | nixos/nginx: enable service/config reload
| | * | | | nixos/nginx: enable service/config reloadJaka Hudoklin2015-04-25
| | |/ / /
| * | | | Merge pull request #7549 from offlinehacker/nixos/ripple-data-api/importmodeJaka Hudoklin2015-04-28
| |\ \ \ \ | | | | | | | | | | | | nixos/ripple-data-api: add import mode option
| | * | | | nixos/ripple-data-api: add import mode optionJaka Hudoklin2015-04-25
| | |/ / /
| * | | | nixos-install: Fix chroot flag not defaulting to Bash outside NixOS.Jookia2015-04-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passing the chroot flag to nixos-install without arguments should now give you a Bash shell as intended rather than try an empty path. This was masked by the user's shell (usually /bin/bash) being defaulted to by chroot, and being found since their paths used NixOS conventions.
| * | | | nixos-install: Fix password prompt failing outside NixOS.Jookia2015-04-28
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When bootstrapping from other distributions, nixos-install is unable to find various tools in the chroot since their paths aren't aware of NixOS conventions. This makes a small change to existing code by specifying nixpkgs/nixos instead of just nixos when running nix-instantiate in the chroot. I haven't tested this outside of bootstrapping, but the same specification is used elsewhere in the code so I don't see why it wouldn't work.
| * | | Remove redundant i18n.supportedLocales settingEelco Dolstra2015-04-27
| | | | | | | | | | | | | | | | | | | | | | | | This is already set in profiles/minimal.nix. Probably fixes #7589.
| * | | Don't require sslServerChain to be setEelco Dolstra2015-04-27
| | | |
| * | | Merge pull request #7486 from oxij/actkbd-and-media-keyslethalman2015-04-27
| |\ \ \ | | | | | | | | | | add actkbd; nixos: add support for volume control with media keys
| | * | | nixos: add actkbd module and sound.enableMediaKeys optionJan Malakhovski2015-04-20
| | | | |