fix(home-manager/sway): avoid IFD (#45)

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2023-10-22 18:53:26 +02:00 committed by GitHub
parent a97085d28b
commit 7513e5edf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,5 +21,7 @@ in
lib.ctp.mkCatppuccinOpt "sway" config;
config.wayland.windowManager.sway.extraConfigEarly =
lib.mkIf enable (builtins.readFile theme);
lib.mkIf enable ''
include ${theme}
'';
}