1

Make hyprland config system dependent

This commit is contained in:
2023-04-26 20:41:01 +02:00
parent 5b2dab3946
commit a358e05d63
2 changed files with 37 additions and 0 deletions

View File

@ -7,8 +7,23 @@ with lib;
with mylib.modules; {
enable = mkEnableOpt "Hyprland Window Manager + Compositor";
kb-layout = mkOption {
type = types.str;
description = "Keyboard layout to use";
};
kb-variant = mkOption {
type = types.str;
description = "Keyboard layout variant";
};
theme = mkOption {
type = types.str;
description = "Wallpaper and colorscheme to use";
};
monitors = mkOption {
type = types.str;
description = "Hyprland monitor configuration";
};
}