From f9f9abf2794e53248489186566172bb2a7aab619 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 26 May 2025 13:43:13 -0700 Subject: [PATCH] feat: qt --- modules/home/shell/default.nix | 1 + modules/home/shell/qt.nix | 11 +++++++++++ snowflake/modules/home/appearance/qt/default.nix | 16 ---------------- 3 files changed, 12 insertions(+), 16 deletions(-) create mode 100644 modules/home/shell/qt.nix delete mode 100644 snowflake/modules/home/appearance/qt/default.nix diff --git a/modules/home/shell/default.nix b/modules/home/shell/default.nix index b2480b1..73c624b 100644 --- a/modules/home/shell/default.nix +++ b/modules/home/shell/default.nix @@ -2,5 +2,6 @@ imports = [ ./stylix.nix ./gtk.nix + ./qt.nix ]; } diff --git a/modules/home/shell/qt.nix b/modules/home/shell/qt.nix new file mode 100644 index 0000000..0c4db9e --- /dev/null +++ b/modules/home/shell/qt.nix @@ -0,0 +1,11 @@ +{ + lib, + config, + ... +}: { + config = lib.mkIf config.marleycfg.profiles.desktop { + qt = { + enable = true; + }; + }; +} diff --git a/snowflake/modules/home/appearance/qt/default.nix b/snowflake/modules/home/appearance/qt/default.nix deleted file mode 100644 index 3515a2c..0000000 --- a/snowflake/modules/home/appearance/qt/default.nix +++ /dev/null @@ -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; - }; - }; -}