theme qt6
among other things..
This commit is contained in:
parent
20108064de
commit
4cca1dc327
16 changed files with 326 additions and 136 deletions
24
modules/home/rice/qt/default.nix
Normal file
24
modules/home/rice/qt/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.custom; let
|
||||
cfg = config.rice.qt;
|
||||
in {
|
||||
options.rice.qt = with types; {
|
||||
enable = mkBoolOpt false "Enable QT Customization";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
catppuccin.kvantum.enable = true;
|
||||
catppuccin.kvantum.apply = true;
|
||||
|
||||
qt.enable = true;
|
||||
qt.style.name = "kvantum";
|
||||
qt.platformTheme.name = "kvantum";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue