1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 10:47:02 +00:00
home-manager/tests/modules/services/window-managers/hyprland/null-all-packages-config.nix

20 lines
338 B
Nix
Raw Normal View History

{
2025-01-30 14:15:07 -06:00
wayland.windowManager.hyprland = {
enable = true;
package = null;
portalPackage = null;
settings = {
cursor = {
enable_hyprcursor = true;
sync_gsettings_theme = true;
};
};
};
nmt.script = ''
config=home-files/.config/hypr/hyprland.conf
assertFileExists "$config"
'';
}