1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 18:57:22 +00:00
home-manager/tests/modules/services/window-managers/hyprland/null-portal-package-config.nix
Austin Horstman 801ddd8693 hyprland: use package stubs
Reducing closure size for tests.
2025-01-31 20:47:14 -06:00

21 lines
358 B
Nix

{
imports = [ ./hyprland-stubs.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"
'';
}