1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00

gtk: add color scheme option

This commit is contained in:
sweenu 2025-09-02 20:18:07 +02:00 committed by Austin Horstman
parent ea3fe2bd72
commit f35703b412
10 changed files with 87 additions and 1 deletions

View file

@ -73,6 +73,17 @@ in
default = null;
description = "Default cursor theme for all GTK versions.";
};
colorScheme = mkOption {
type = types.nullOr (
types.enum [
"dark"
"light"
]
);
default = null;
description = "Default color scheme for all GTK versions";
};
};
config = mkIf cfg.enable {