diff --git a/home/features/desktop/hyprland/default.nix b/home/features/desktop/hyprland/default.nix index 2050e7e..0f8837c 100644 --- a/home/features/desktop/hyprland/default.nix +++ b/home/features/desktop/hyprland/default.nix @@ -6,6 +6,10 @@ ../wayland-wm ]; + home.packages = with pkgs; [ + hyprpicker + ]; + wayland.windowManager.hyprland = { enable = true; systemdIntegration = true; diff --git a/home/features/desktop/qt.nix b/home/features/desktop/qt.nix new file mode 100644 index 0000000..07398e5 --- /dev/null +++ b/home/features/desktop/qt.nix @@ -0,0 +1,10 @@ +{ pkgs, cofig, ... }: { + qt = { + enable = true; + platformTheme = "gtk"; + style = { + name = "gtk2"; + package = pkgs.qt6Packages.qt6gtk2; + }; + }; +} \ No newline at end of file