mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 18:26:54 +00:00
20 lines
347 B
Nix
20 lines
347 B
Nix
|
{ ... }: {
|
||
|
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"
|
||
|
'';
|
||
|
}
|