From ee9e3281d6188e159b43958462011f9960f50586 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 23 Aug 2023 15:16:05 -0700 Subject: [PATCH] Don't start without graphical-session --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index 942e710..430a582 100644 --- a/module.nix +++ b/module.nix @@ -55,7 +55,7 @@ in { systemd.user.services.wallfly = { enable = true; - wantedBy = [ "default.target" ]; + wantedBy = [ "graphical-session.target" ]; after = [ "graphical-session.target" ]; path = with pkgs; [ nettools xprintidle ]; restartIfChanged = true;