summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-11-09 20:06:01 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-11-09 20:45:50 +0100
commitdc352536a8be332aa520d732c656189478ecb104 (patch)
treee19dc271bcd578d1feb5509e1f1277173dcaf54e /nixos/modules/config
parent981c28735583f983ae25050fd1fc9533ae501aa0 (diff)
downloadnixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar.gz
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar.bz2
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar.lz
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar.xz
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.tar.zst
nixpkgs-dc352536a8be332aa520d732c656189478ecb104.zip
nixos: capitalize a bunch of service descriptions
(systemd service descriptions that is, not service descriptions in "man
configuration.nix".)

Capitalizing each word in the description seems to be the accepted
standard.

Also shorten these descriptions:
 * "Munin node, the agent process" => "Munin Node"
 * "Planet Venus, an awesome ‘river of news’ feed reader" => "Planet Venus Feed Reader"
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/pulseaudio.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index 7a6cc542273..e7cbe7a28f3 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -131,7 +131,7 @@ in {
       users.extraGroups.pulse.gid = gid;
 
       systemd.services.pulseaudio = {
-        description = "PulseAudio system-wide server";
+        description = "PulseAudio System-Wide Server";
         wantedBy = [ "sound.target" ];
         before = [ "sound.target" ];
         path = [ cfg.package ];