woot, got it building, on to the next step

This commit is contained in:
Chris Kruining 2025-06-15 21:52:27 +02:00
parent be896b7739
commit 4053975856
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
9 changed files with 66 additions and 35 deletions

View file

@ -1,6 +1,6 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib) mkIf;
inherit (lib) mkIf mkDefault;
inherit (lib.options) mkOption mkEnableOption;
inherit (lib.types) nullOr enum;
@ -31,7 +31,7 @@ in {
base16Scheme = "${pkgs.base16-schemes}/share/themes/${cfg.theme}.yaml";
image = ./${cfg.theme}.jpg;
polarity = cfg.polarity;
targets.qt.platform = "kde6";
targets.qt.platform = mkDefault "kde6";
};
};
}