This commit is contained in:
punkfairie 2025-05-26 13:43:13 -07:00
parent 0ba745d792
commit f9f9abf279
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 12 additions and 16 deletions

View file

@ -2,5 +2,6 @@
imports = [
./stylix.nix
./gtk.nix
./qt.nix
];
}

11
modules/home/shell/qt.nix Normal file
View file

@ -0,0 +1,11 @@
{
lib,
config,
...
}: {
config = lib.mkIf config.marleycfg.profiles.desktop {
qt = {
enable = true;
};
};
}

View file

@ -1,16 +0,0 @@
{
lib,
config,
inputs,
...
}: let
cfg = config.marleyos.appearance.qt;
in {
options.marleyos.appearance.qt.enable = lib.mkEnableOption "qt";
config = lib.mkIf cfg.enable {
qt = {
enable = true;
};
};
}