mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 07:50:43 +00:00
Allow specifying monitors from os config
This commit is contained in:
parent
6da71787f1
commit
6180f89b72
3 changed files with 25 additions and 4 deletions
|
@ -6,9 +6,18 @@
|
|||
inherit (lib) mkEnableOption mkOption types;
|
||||
in {
|
||||
options.myOptions.home-manager.wms = {
|
||||
hyprland.enable = mkEnableOption ''
|
||||
Hyprland wayland compositor.
|
||||
'';
|
||||
hyprland = {
|
||||
enable = mkEnableOption ''
|
||||
Hyprland wayland compositor.
|
||||
'';
|
||||
|
||||
|
||||
monitor = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [];
|
||||
description = "Monitor configuration.";
|
||||
};
|
||||
};
|
||||
|
||||
isWayland = mkOption {
|
||||
type = types.bool;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue