From b6027f7c8858cd768f47133b853bd7055065a930 Mon Sep 17 00:00:00 2001 From: oddlama Date: Thu, 9 Feb 2023 13:59:18 +0100 Subject: [PATCH] fix: mkIf backward-propagates and disables keymap (probably due to _conditional or smth being set) ?? --- modules/core/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index e8394c3..9e84ac1 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -35,7 +35,7 @@ in { { keyMap = "de-latin1-nodeadkeys"; } - // lib.mkIf config.hardware.video.hidpi.enable { + // lib.optionalAttrs config.hardware.video.hidpi.enable { font = "ter-v28n"; packages = with pkgs; [terminus_font]; };