dotfiles/nixos/modules/hyprland/default.nix

23 lines
396 B
Nix
Raw Normal View History

2025-01-09 02:09:02 -06:00
{
2025-01-19 02:31:05 -06:00
imports = map (file: ./${file}.nix) [
"geoclue2"
"greetd"
"network"
"hypridle"
"hyprland"
"regreet"
"swaylock"
"thunar"
"wayland"
];
2025-02-01 00:26:39 -06:00
environment = {
variables = {
WLR_NO_HARDWARE_CURSORS = "1";
WLR_DRM_NO_ATOMIC = "1";
FLAMESHOT_ENABLE_WAYLAND = "1";
USE_WAYLAND_GRIM = "1";
USE_WAYLAND_CLIPBOARD = "1";
};
};
2025-01-09 02:09:02 -06:00
}