fix hyprland wrapper's extraSettings
This commit is contained in:
parent
4c7784c91a
commit
9815fbdead
1 changed files with 5 additions and 2 deletions
|
@ -33,6 +33,9 @@ in {
|
|||
description = "enable tearing";
|
||||
default = false;
|
||||
};
|
||||
# TODO specify the type so I can merge everything manually
|
||||
# without nix screaming at me because a specific subattrs
|
||||
# doesn't exist
|
||||
extraSettings = mkOption {
|
||||
type = types.attrs;
|
||||
description = "extra per host hyprland settings";
|
||||
|
@ -480,7 +483,7 @@ in {
|
|||
|
||||
"${pkgs.networkmanagerapplet}/bin/nm-applet --indicator"
|
||||
"${pkgs.blueman}/bin/blueman-applet"
|
||||
];
|
||||
] ++ cfg.extraSettings.exec-once;
|
||||
|
||||
layerrule = [
|
||||
# no black border on grimblast screenshots
|
||||
|
@ -506,7 +509,7 @@ in {
|
|||
keep_focused = true;
|
||||
};
|
||||
};
|
||||
} // cfg.extraSettings;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue