Skip to content

Commit

Permalink
Enable xwayland support in hyprland and install hyprpaper for wallpap…
Browse files Browse the repository at this point in the history
…er config
  • Loading branch information
arunoruto committed Jun 23, 2024
1 parent e318681 commit eb56f40
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions nixos/desktop/hyprland.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,18 @@
# #extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
#};

# enable sway window manager
programs.hyprland = {
enable = true;
# package = pkgs.unstable.hyprland;
xwayland.enable = true;
programs = {
# Enable hyprland and xwayland
hyprland = {
enable = true;
# package = pkgs.unstable.hyprland;
xwayland.enable = true;
};
# If you are on a laptop, you can set up brightness and volume function keys as follows:
light.enable = true;
};

# If you are on a laptop, you can set up brightness and volume function keys as follows:
programs.light.enable = true;
environment.systemPackages = with pkgs; [
hyprpaper
];
}

0 comments on commit eb56f40

Please sign in to comment.