From 5b3c8485d60475ce8b316eab6b56afa47e11dea6 Mon Sep 17 00:00:00 2001 From: Michael Peyton Jones Date: Sat, 22 Sep 2018 18:23:31 +0100 Subject: [PATCH] sddm: link whole sddm directory, not just themes (#47174) --- nixos/modules/services/x11/display-managers/sddm.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index 1635c0f9acc5..2a9826177737 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -263,7 +263,9 @@ in }; environment.etc."sddm.conf".source = cfgFile; - environment.pathsToLink = [ "/share/sddm/themes" ]; + environment.pathsToLink = [ + "/share/sddm" + ]; users.groups.sddm.gid = config.ids.gids.sddm;