mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
21 lines
386 B
Nix
21 lines
386 B
Nix
{ ... }: {
|
|
imports = [ ./hyprland-stubs.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"
|
|
'';
|
|
}
|