1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-09 10:16:55 +00:00
home-manager/tests/modules/services/window-managers/hyprland/null-portal-package-config.nix
2025-01-30 15:41:13 -06:00

18 lines
327 B
Nix

{ ... }: {
wayland.windowManager.hyprland = {
enable = true;
portalPackage = null;
settings = {
cursor = {
enable_hyprcursor = true;
sync_gsettings_theme = true;
};
};
};
nmt.script = ''
config=home-files/.config/hypr/hyprland.conf
assertFileExists "$config"
'';
}