fix: customTop/customBottom
This commit is contained in:
parent
42b76c5ed3
commit
72ac487c58
3 changed files with 25 additions and 27 deletions
|
|
@ -212,6 +212,28 @@ with lib; {
|
|||
};
|
||||
};
|
||||
|
||||
############################################################
|
||||
# Hyprland user injection
|
||||
############################################################
|
||||
|
||||
hyprland.customTop = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
description = ''
|
||||
Custom Hyprland configuration injected near the top
|
||||
of the generated config.
|
||||
'';
|
||||
};
|
||||
|
||||
hyprland.customBottom = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
description = ''
|
||||
Custom Hyprland configuration injected at the very bottom
|
||||
of the generated config.
|
||||
'';
|
||||
};
|
||||
|
||||
hyprland.startup = {
|
||||
preset = mkOption {
|
||||
type = types.enum ["default" "minimal" "none"];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue