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; - }; - }; -}