feat: qt
This commit is contained in:
parent
0ba745d792
commit
f9f9abf279
3 changed files with 12 additions and 16 deletions
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./stylix.nix
|
./stylix.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
|
./qt.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
11
modules/home/shell/qt.nix
Normal file
11
modules/home/shell/qt.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
config = lib.mkIf config.marleycfg.profiles.desktop {
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue