summaryrefslogtreecommitdiff
path: root/home/qt.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/qt.nix')
-rw-r--r--home/qt.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/home/qt.nix b/home/qt.nix
deleted file mode 100644
index 49ea0c1..0000000
--- a/home/qt.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- lib,
- config,
- ...
-}: let
- font = "${config.theme.font.regular},10";
- qtctConf =
- lib.generators.toINI {}
- {
- Appearance = {
- custom_palette = false;
- icon_theme = config.gtk.iconTheme.name;
- standard_dialogs = "xdgdesktopportal";
- style = "gtk2";
- };
- Fonts = {
- fixed = font;
- general = font;
- };
- };
-in {
- qt = {
- enable = true;
- platformTheme.name = "qtct";
- style.name = "gtk2";
- };
-
- xdg.configFile = {
- "qt5ct/qt5ct.conf".text = qtctConf;
- "qt6ct/qt6ct.conf".text = qtctConf;
- };
-}