mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
22 lines
396 B
Nix
Executable file
22 lines
396 B
Nix
Executable file
{
|
|
imports = map (file: ./${file}.nix) [
|
|
"geoclue2"
|
|
"greetd"
|
|
"network"
|
|
"hypridle"
|
|
"hyprland"
|
|
"regreet"
|
|
"swaylock"
|
|
"thunar"
|
|
"wayland"
|
|
];
|
|
environment = {
|
|
variables = {
|
|
WLR_NO_HARDWARE_CURSORS = "1";
|
|
WLR_DRM_NO_ATOMIC = "1";
|
|
FLAMESHOT_ENABLE_WAYLAND = "1";
|
|
USE_WAYLAND_GRIM = "1";
|
|
USE_WAYLAND_CLIPBOARD = "1";
|
|
};
|
|
};
|
|
}
|