Add hyprland.

This commit is contained in:
Kevin Baensch 2024-02-21 21:53:58 +01:00
parent eb037456aa
commit cbcdccbdc7
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 52 additions and 1 deletions

View file

@ -0,0 +1,46 @@
{
system,
config,
lib,
pkgs,
hyprland,
hy3,
...
}:
with lib;
mkIf (elem "desktop::hyprland" config.machine.services) {
programs.hyprland = {
enable = true;
package = hyprland.packages."${system}".hyprland;
xwayland.enable = false;
};
environment.systemPackages =
[
hy3.packages."${system}".hy3
]
++ (with pkgs; [
kanagawa
eww-wayland
rofi-wayland
hyprpicker
waybar
swaybg
]);
# TODO: Refactor
environment = {
etc."xdg/gtk-2.0/gtkrc".text = ''
gtk-key-theme-name = "Kanagawa-BL"
'';
etc."xdg/gtk-3.0/settings.ini".text = ''
[Settings]
gtk-key-theme-name = Kanagawa-BL
'';
sessionVariables.NIXOS_OZONE_WL = "1";
};
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
};
}