9 lines
122 B
Nix
9 lines
122 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.hyprland = lib.mkIf config.device.wm.hyprland.enable {
|
|
enable = true;
|
|
};
|
|
}
|