From 6bec62073bda8204e6eb38b60c1d729363a1c623 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 21 Oct 2021 16:42:10 +0200 Subject: [PATCH] home: start services when switching As I use home-manager with its NixOS module, I do not see the message suggesting to start the services otherwise. --- home/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/default.nix b/home/default.nix index e68c53b..b88dfed 100644 --- a/home/default.nix +++ b/home/default.nix @@ -40,4 +40,7 @@ # Who am I? home.username = "ambroisie"; + + # Start services automatically + systemd.user.startServices = "sd-switch"; }