mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 10:16:55 +00:00
18 lines
327 B
Nix
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"
|
|
'';
|
|
}
|