about summary refs log tree commit diff
path: root/nixos/modules/services
Commit message (Collapse)AuthorAge
* gnome 3.12: make remote desktop sharing workLuca Bruno2014-05-26
|
* Add gvfs dbus service and gvfs gio modules to gnome 3Luca Bruno2014-05-26
| | | | Closes #2746
* nixos: add 'gvfs' when using GNOME3 desktopBjørn Forsman2014-05-25
| | | | | | | | | | | | | | One reason for adding this is to make Chromium able to open files it has downloaded. Currently this happens: /run/current-system/sw/bin/xdg-open: line 364: gnome-open: command not found (And nothing happens in the GUI when clicking a downloaded file.) Looking into xdg-open, one can see that it first tries to run gvfs-open and then falls back to gnome-open. Adding 'gvfs' makes the first command succeed.
* nixos/modules/services/audio/alsa.nix: fix evaluationPeter Simons2014-05-23
| | | | https://github.com/NixOS/nixpkgs/issues/2732
* fix mistakeArseniy Seroka2014-05-23
|
* alsa: add option to change system wide configurationArseniy Seroka2014-05-23
|
* transmission: Fix apparmor rules to allow loading more librariesRicardo M. Correia2014-05-22
|
* Remove udisks moduleEelco Dolstra2014-05-22
| | | | It's no longer used in NixOS.
* Enable the xf86-video-modesetting driverEelco Dolstra2014-05-21
|
* Override glib_networking with gnome 3.12 scopeLuca Bruno2014-05-21
|
* evolution-data-server: use the right gnome3 package set in the serviceLuca Bruno2014-05-21
|
* upower: add 0.99 version for gnome 3.12Luca Bruno2014-05-20
|
* Allow specifying the gnome3 packages to use for the xserver serviceLuca Bruno2014-05-20
|
* Fix udev rule required by gpmEelco Dolstra2014-05-20
| | | | Backport: 14.04
* fix eval after previous commitVladimír Čunát2014-05-18
|
* berlios.de probably shut down, replace itVladimír Čunát2014-05-18
| | | | The shutdown was announced years ago, only now it stopped working.
* Fix dogstatsd, needs procps in path.Rob Vermaas2014-05-18
| | | | (cherry picked from commit ecdb0f7867007b2e5ae0d14a0994d3b502d90fa7)
* Merge pull request #2604 from wkennington/master.notbitAustin Seipp2014-05-17
|\ | | | | notbit: Bump version and add more configuration options
| * notbit: Add additional options to the daemonWilliam A. Kennington III2014-05-13
| |
| * notbit: Don't include unecessary notbit binaries in the environmentWilliam A. Kennington III2014-05-13
| |
| * notbit: Use the correct default portWilliam A. Kennington III2014-05-13
| |
* | Merge pull request #2629 from letac/masterAustin Seipp2014-05-14
|\ \ | | | | | | Phabricator, a web application, snapshot of 2014-05-12
| * | Phabricator, a web application, snapshot of 2014-05-12Strahinja Popovic2014-05-12
| | |
* | | Merge pull request #2301 from bjornfor/graphite-fixeslethalman2014-05-14
|\ \ \ | |_|/ |/| | nixos/graphite-service: fix startup
| * | nixos/grahite-service: mkdir -m => mkdir && chmodBjørn Forsman2014-04-17
| | | | | | | | | | | | | | | | | | | | | | | | mkdir -m will only set the permissions if it *creates* the directory. Existing directories, with possibly wrong permissions, will not be updated. Use explicit chmod so permissions will always be correct.
| * | nixos/graphite-service: fix startup issueBjørn Forsman2014-04-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The preStart snippets (graphite, carbon) try to create directories under /var/db/. That currently fails because the code is run as user "graphite". Fix by setting "PermissionsStartOnly = true" so that the preStart stuff is run as 'root'. Further: * graphite-web-0.9.12/bin/build-index.sh needs perl, so add it to PATH. * Now that preStart runs as root, we must wait with "chown graphite" until we're done creating files/directories. * Drop needless check for root (uid 0) before running chown.
* | | Merge pull request #2375 from lethalman/gnome3lethalman2014-05-13
|\ \ \ | |_|/ |/| | gtkhtml, evolution, gnome-photos, gnome-clocks, zeitgeist, bijiben
| * | bijiben: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | | | | | | | Note editor designed to remain simple to use https://wiki.gnome.org/Apps/Bijiben
| * | gnome-clocks: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | | | | | | | Clock application designed for GNOME 3 https://wiki.gnome.org/Apps/Clocks
| * | geoclue2: add dbus serviceLuca Bruno2014-05-02
| | |
| * | gnome-photos: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | | | | | | | Photos is an application to access, organize and share your photos with GNOME 3 https://wiki.gnome.org/Apps/Photos
| * | evolution: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | | | | | | | | | | Personal information management application that provides integrated mail, calendaring and address book functionality https://wiki.gnome.org/Apps/Evolution
* | | dhcpcd: Allow adding hook codeWout Mertens2014-05-12
| | |
* | | Containers: Use systemd-nspawn's --network-veth flagEelco Dolstra2014-05-07
| | | | | | | | | | | | | | | Note that this causes the name of the host-side interface to change from c-<name> to ve-<name>.
* | | nixos: overhaul datadog moduleAustin Seipp2014-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This overhauls the Datadog module a bit to be much more useful. In particular, it adds support for nginx and postgresql monitoring integrations to dd-agent. These have to exist in separate files under /etc/dd-agent, so the module just exposes then as separate options. In the future, more integrations could be added this way. In the process of doing this, I also had to rename the dd-agent user to datadog. Note the UIDs did not change, so this is strictly backwards compatible. The reason for this is to make it easier to create a 'datadog' postgres user with access to pg_stats, as 'dd-agent' typically isn't a valid username. This allows the out of the box configurations to be used. Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | | btsync: Default to no login/password for the Web UIAustin Seipp2014-05-02
| | | | | | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | | btsync: remove unneeded assertionAustin Seipp2014-05-01
|/ / | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | Actually use services.mysql.portShea Levy2014-04-30
| | | | | | | | Fixes #1315
* | Handle Zabbix agent and server both being enabledEelco Dolstra2014-04-30
| | | | | | | | | | This gave an error about the zabbix user uid being defined multiple times.
* | Move the NVIDIA support into its own moduleEelco Dolstra2014-04-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously all card-specific stuff was scattered across xserver.nix and opengl.nix, which is ugly. Now it can be kept together in a single card-specific module. This required the addition of a few internal options: - services.xserver.drivers: A list of { name, driverName, modules, libPath } sets. - hardware.opengl.package: The OpenGL implementation. Note that there can be only one OpenGL implementation at a time in a system configuration (i.e. no dynamic detection). - hardware.opengl.package32: The 32-bit OpenGL implementation.
* | Rename hardware.opengl.videoDrivers back to services.xserver.videoDriversEelco Dolstra2014-04-29
| | | | | | | | | | | | | | | | Fixes #2379. The new name was a misnomer because the values really are X11 video drivers (e.g. ‘cirrus’ or ‘nvidia’), not OpenGL implementations. That it's also used to set an OpenGL implementation for kmscon is just confusing overloading.
* | Obsolete fonts.extraFontsEelco Dolstra2014-04-29
| | | | | | | | | | You can now just set fonts.fonts, which will be merged with the default value unless you use mkOverride.
* | Fix some uid/gid attributes to match the actual user/group nameEelco Dolstra2014-04-29
| |
* | Remove use of obsolete flagsEelco Dolstra2014-04-29
| |
* | nixos: refactor tarsnap moduleAustin Seipp2014-04-28
| | | | | | | | | | | | | | | | The Tarsnap module is now far more flexible, allowing individual archives with individual options to be specified at will, allowing granular backup schedules, etc. Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | wpa_supplicant: Restart when wlan devices (dis)appearEelco Dolstra2014-04-28
| |
* | gpm: Depend on /dev/input/miceEelco Dolstra2014-04-28
| |
* | nixos: only enable spipe when user specifiesAustin Seipp2014-04-25
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | cups: Add a listenAddresses optionEelco Dolstra2014-04-25
| |
* | Make nscd startup synchronousEelco Dolstra2014-04-24
| | | | | | | | | | | | | | Nscd forks into the background before it's ready to accept connections. So explicitly wait until it's ready. http://hydra.nixos.org/build/10661767