From cc2e876d23f58638f506548efe38a4fc9d300b63 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 5 Nov 2021 16:14:30 +0100 Subject: [PATCH] home: do restart services automatically It seems like the problem is still present even after reverting this commit... So I might as well use the option anyway, as it avoids having to do it manually. This reverts commit a94f349dde7e2a12565a49ff28714b7c92fc3b3d. --- 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"; }