dotfiles/nixos/hyprland.nix
2024-08-29 09:05:11 -04:00

44 lines
783 B
Nix

{ pkgs, ... }:
{
programs.xwayland = {
enable = true;
package = pkgs.xwayland;
};
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
programs.hyprlock.enable = true;
services.hypridle.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true;
environment.systemPackages = with pkgs; [
xdg-desktop-portal-gtk
xarchiver
xwayland
xwaylandvideobridge
egl-wayland
# Clipboard
wl-clipboard
cliphist
# Notifications
inotify-tools
# Wallpaper
swww
# Emoji
emote
# Screenshots
grim
slurp
swappy
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}