From 462a9f9fb05e2cb15103127c81d8266b7efb1a18 Mon Sep 17 00:00:00 2001 From: Alexander Inyukhin Date: Sat, 15 Dec 2012 15:31:32 +0400 Subject: [PATCH] Remove .conf extension from acpid config files This should fix #51 --- modules/services/hardware/acpid.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/hardware/acpid.nix b/modules/services/hardware/acpid.nix index 303db3816b5a..26c600092db3 100644 --- a/modules/services/hardware/acpid.nix +++ b/modules/services/hardware/acpid.nix @@ -8,11 +8,11 @@ let '' ensureDir $out ${ - # Generate a .conf file for each event. (You can't have + # Generate a configuration file for each event. (You can't have # multiple events in one config file...) let f = event: '' - fn=$out/${event.name}.conf + fn=$out/${event.name} echo "event=${event.event}" > $fn echo "action=${pkgs.writeScript "${event.name}.sh" event.action}" >> $fn '';