about summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* nixos: tmp on tmpfs optionEmery Hemingway2014-07-30
| | | | | | | /tmp cleaning is done by systemd rather than stage-2-init enableEmergencyMode moved from systemd to seperate module new option to mount tmp on tmpfs new option to enable additional units shipped with systemd
* Shut up a warning in stage 2Eelco Dolstra2014-07-30
|
* Remove Subversion from the installation CDEelco Dolstra2014-07-30
|
* Mount unionfs-fuse filesystems using the normal fileSystems optionEelco Dolstra2014-07-30
|
* Really fix NixOS/nixos#287Eelco Dolstra2014-07-30
|
* makeTest: Pass nodes attributeEelco Dolstra2014-07-30
| | | | | | This allows doing things like: nix-build nixos/tests/misc.nix -A nodes.machine.config.system.build.initialRamdisk
* Don't require a device for tmpfs filesystemsEelco Dolstra2014-07-30
|
* Print a sensible error message if no device is specified for a filesystemEelco Dolstra2014-07-30
|
* Move CIFS support into a separate moduleEelco Dolstra2014-07-30
|
* Check for systemd environment variables that are too longEelco Dolstra2014-07-30
| | | | | Issue #3403. For the case of $PATH being too long, we could call buildEnv automatically.
* nixos/tests/containers.nix: Don't pingEelco Dolstra2014-07-29
| | | | | | This randomly fails with "Destination Host Unreachable". That shouldn't happen, since all interfaces/routes should be up after "nixos-container start" returns. Need more investigation...
* Make the networkmanager group more discoverableDamien Cassou2014-07-29
| | | | | This change makes the manual present the networkmanager group at several places to make sure new users see it.
* initrd: Include filesystem support for /nix, /var etc.Eelco Dolstra2014-07-28
|
* Upgrade docker to 1.1.2 and add docker modulePaul Colomiets2014-07-28
| | | | | | | | | This version of module has disabled socketActivation, because until nixos upgrade systemd to at least 214, systemd does not support SocketGroup. So socket is created with "root" group when socketActivation enabled. Should be fixed as soon as systemd upgraded. Includes changes from #3015 and supersedes #3028
* elasticsearch: Fix error in NixOS module, systemd ExecStart path must be ↵Rickard Nilsson2014-07-28
| | | | absolute.
* Add NixOS module for Mopidy, a music player daemonRickard Nilsson2014-07-28
|
* Set $SSL_CERT_FILEEelco Dolstra2014-07-28
| | | | | | | It's more standard than $OPENSSL_X509_CERT_FILE (which I guess was a totally unnecessary patch to OpenSSL). Since curl respects $SSL_CERT_FILE, it's no longer needed to set $CURL_CA_BUNDLE. Git unfortunately doesn't.
* Merge pull request #3369 from matejc/fixcpufreqmoduleJaka Hudoklin2014-07-26
|\ | | | | fix e18 cpufreq module: set setuid to freqset
| * fix e18 cpufreq module: set setuid to freqsetMatej Cotman2014-07-25
| |
* | RabbitMQ service: add properties essential for clustersEvgeny Egorochkin2014-07-26
| |
* | Merge pull request #3262 from bjornfor/znc-module-typeslethalman2014-07-26
|\ \ | | | | | | nixos/znc-service: don't use types.string (it's deprecated)
| * | nixos/znc-service: don't use types.string (it's deprecated)Bjørn Forsman2014-07-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apart from s/types.string/types.str/ (or types.lines where appropriate): * port is changed from string to int. * extraFlags is changed from types.string (with unfortunate merge semantics) into a list of strings. A list of strings merge better: one space is added between elements.
* | | Merge pull request #3292 from offlinehacker/elasticsearch_pluginsJaka Hudoklin2014-07-26
|\ \ \ | | | | | | | | elasticsearch: add support for plugins
| * | | elasticsearch: add support for pluginsJaka Hudoklin2014-07-25
| | | |
* | | | nixos/munin: change activationScript to preStart scriptBjørn Forsman2014-07-26
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All activation scripts run in serial upon boot and nixos-rebuild switch etc., in contrast to preStart which run before a service starts, and can run in parallel with other services. The munin(-node) activation script is particularly slow. Change it to a preStart script so that it can run in parallel with other services and not slow down boot (or nixos-rebuild switch). This reduces (repeated) "nixos-rebuild test" time from ~16 seconds to ~8 on my (old) laptop.
* | | setup-etc.pl: Keep track of copied filesEelco Dolstra2014-07-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | We now track copied files in /etc/.clean. This is important, because otherwise files that are removed from environment.etc will not actually be removed from the file system. In particular, changing users.extraUsers.<user>.openssh.authorizedKeys.keys to an empty list would not cause /etc/ssh/authorized_keys.d/<user> to be removed, which was a security issue.
* | | nix-ssh: Don't use a shell that refers to a store pathEelco Dolstra2014-07-25
| | |
* | | Add convenience option nix.sshServe.keysEelco Dolstra2014-07-25
| | | | | | | | | | | | | | | This is equivalent to setting users.extraUsers.nix-cache.openssh.authorizedKeys.keys.
* | | nix-ssh-serve.nix: Remove unnecessary checkEelco Dolstra2014-07-25
| |/ |/| | | | | | | ForceCommand ensures that we always run nix-store --serve, so there is no need to check SSH_ORIGINAL_COMMAND.
* | nixos/lighttpd: improve sub-service option types (cgit, gitweb)Bjørn Forsman2014-07-23
| |
* | nixos/lighttpd-service: don't use types.string (it's deprecated)Bjørn Forsman2014-07-23
| |
* | nixos/doc/manual: Fix typos in README.aszlig2014-07-23
| | | | | | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | Merge pull request #3335 from DamienCassou/doc-for-building-the-nixos-manualRob Vermaas2014-07-23
|\ \ | | | | | | README for building the nixos manual
| * | README for building the nixos manualDamien Cassou2014-07-21
| | |
* | | Merge pull request #3336 from DamienCassou/installing-on-efilethalman2014-07-22
|\ \ \ | | | | | | | | Adding a missing instruction for EFI installations
| * | | Adding a missing instruction for EFI installationsDamien Cassou2014-07-21
| |/ / | | | | | | | | | | | | This commit also adds a link to rEFInd which is a useful tool to manage EFI systems. If this link is not desired, I can remove it.
* | | Merge pull request #3323 from wjlroe/logstash-1.4.2Pascal Wittmann2014-07-21
|\ \ \ | |/ / |/| | Logstash 1.4.2
| * | Fix service to use logstash new directory layoutWilliam Roe2014-07-21
| | |
* | | Google Compute config: add a unit to wait for the metadata server to become ↵Evgeny Egorochkin2014-07-20
| | | | | | | | | | | | available
* | | e18: enlightenment desktop manager version 18Matej Cotman2014-07-17
| | |
* | | Don't restart systemd-journal-flushEelco Dolstra2014-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | It only needs to be started during boot. Starting it at other times shouldn't hurt, except that if systemd-journald is restarting at the same time, the latter might not have a SIGUSR1 signal handler installed yet, so it might be killed by systemd-journal-flush. (At least that's my theory about the dead systemd-journald instances in the build farm...)
* | | nixos/module-list.nix: keep it sortedBjørn Forsman2014-07-16
| | |
* | | Merge pull request #3285 from ehmry/polipoPeter Simons2014-07-16
|\ \ \ | | | | | | | | Polipo
| * | | polipo: new service expressionEmery Hemingway2014-07-16
| | |/ | |/|
* | | Fix virtualbox image building with new nixShea Levy2014-07-15
| | |
* | | nixos/redis: fix evaluationBjørn Forsman2014-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 89fee1006c03d40052842b49f5cdbbeb755d081b ("nixos/redis: clean up option types") broke nixos evaluation: error: attempt to call something which is not a function but a set, at .../nixpkgs/nixos/modules/services/databases/redis.nix:111:28 Fix it. Reported by Oliver Charles (thanks!).
* | | nixos/redis: clean up option typesBjørn Forsman2014-07-15
| | | | | | | | | | | | | | | Some options lack a type and some use the deprecated "string" type. Fix it.
* | | Add automatic plugin activation for vimPaul Colomiets2014-07-15
|/ /
* | Merge pull request #3245 from rastus-vernon/patch-1Pascal Wittmann2014-07-12
|\ \ | | | | | | Fix repeated typo
| * | Fix repeated typoRastus Vernon2014-07-11
| | | | | | | | | "Can either by" should be "Can either be". There are three occurrences of this mistake, all in descriptions of configuration options.