From f3e8bb780c4a2223a929438fbd65c9eb78a4b3ef Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 3 Dec 2015 22:53:30 +0300 Subject: [PATCH] nixos/kbd: make systemd-vconsole-setup work with KMS --- nixos/modules/tasks/kbd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/tasks/kbd.nix b/nixos/modules/tasks/kbd.nix index 5969da7062b..e36e9f85f1e 100644 --- a/nixos/modules/tasks/kbd.nix +++ b/nixos/modules/tasks/kbd.nix @@ -56,6 +56,8 @@ in # it has a restart trigger. systemd.services."systemd-vconsole-setup" = { wantedBy = [ "multi-user.target" ]; + before = [ "display-manager.service" ]; + after = [ "systemd-udev-settle.service" ]; restartTriggers = [ vconsoleConf ]; };