aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiclas <niclas@countingsort.com>2020-09-06 09:28:40 +0000
committerGitHub <noreply@github.com>2020-09-06 11:28:40 +0200
commit4ebb7d1715d77269e8bf0eea3c84c8f8e8cd5caa (patch)
treea0602eed347ac2fdaef8419cae843b9ff51bb874
parent1a6d6b8acee1537e6cf48dbc5b32dacba06e8ef3 (diff)
systemd: fix systemd spelling (#1373)
Systemdaemons are lowercased and get suffixed with a d
-rw-r--r--modules/misc/news.nix2
-rw-r--r--modules/systemd.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/misc/news.nix b/modules/misc/news.nix
index ea551aa3d35..b1d612cd5df 100644
--- a/modules/misc/news.nix
+++ b/modules/misc/news.nix
@@ -452,7 +452,7 @@ in
{
time = "2017-12-11T17:23:12+00:00";
- condition = config.home.activation ? reloadSystemD;
+ condition = config.home.activation ? reloadSystemd;
message = ''
The Boolean option 'systemd.user.startServices' is now
available. When enabled the current naive systemd unit
diff --git a/modules/systemd.nix b/modules/systemd.nix
index dcb1a29570d..66fffadf737 100644
--- a/modules/systemd.nix
+++ b/modules/systemd.nix
@@ -228,7 +228,7 @@ in
# running this from the NixOS module then XDG_RUNTIME_DIR is not
# set and systemd commands will fail. We'll therefore have to
# set it ourselves in that case.
- home.activation.reloadSystemD = hm.dag.entryAfter ["linkGeneration"] (
+ home.activation.reloadSystemd = hm.dag.entryAfter ["linkGeneration"] (
let
autoReloadCmd = ''
${pkgs.ruby}/bin/ruby ${./systemd-activate.rb} \