NixOS 25.11

This commit is contained in:
KoenDR06 2025-11-29 22:35:40 +01:00
parent 8ae4006208
commit c264999fb4
9 changed files with 36 additions and 28 deletions

View file

@ -1,7 +1,7 @@
{lib, ...}: let
inherit (lib) mkOption types;
# v0.52.0
# v0.52.1
vec2 = types.submodule {
options = {
x = mkOption {type = types.int;};
@ -1064,7 +1064,7 @@ in {
type = types.bool;
default = true;
};
onFocusUnderFullscreen = mkOption {
newWindowTakesOverFullscreen = mkOption {
description = "if there is a fullscreen or maximized window, decide whether a tiled window requested to focus should replace it, stay behind or disable the fullscreen/maximized state. 0 - ignore focus request (keep focus on fullscreen window), 1 - takes over, 2 - unfullscreen/unmaximize [0/1/2]";
type = types.ints.between 0 2;
default = 2;
@ -1094,7 +1094,7 @@ in {
type = types.bool;
default = false;
};
disableHyprlandQtutilsCheck = mkOption {
disableHyprlandGuiUtilsCheck = mkOption {
description = "disable the warning if hyprland-qtutils is not installed";
type = types.bool;
default = false;