add icc profile

This commit is contained in:
Asaki Yuki 2026-04-18 02:37:26 +07:00
parent b89e3ef823
commit 1be064468c
4 changed files with 26 additions and 33 deletions

View file

@ -22,10 +22,17 @@
niri.enable = lib.mkEnableOption "niri";
hyprland = {
enable = lib.mkEnableOption "hyprland";
monitors = lib.mkOption {
monitor = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [];
description = "Monitors vs settings";
};
monitorsv2 = lib.mkOption {
type = lib.types.listOf lib.types.attrs;
default = [];
description = "Monitors settings";
description = "Monitors vs settings";
};
};
};