This commit is contained in:
John Bowdre 2023-10-01 15:23:20 -05:00
parent 0dfa785ec7
commit 9a37482320
2 changed files with 14 additions and 0 deletions

View file

@ -6,6 +6,10 @@
../wayland-wm
];
home.packages = with pkgs; [
hyprpicker
];
wayland.windowManager.hyprland = {
enable = true;
systemdIntegration = true;

View file

@ -0,0 +1,10 @@
{ pkgs, cofig, ... }: {
qt = {
enable = true;
platformTheme = "gtk";
style = {
name = "gtk2";
package = pkgs.qt6Packages.qt6gtk2;
};
};
}