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:
parent
ea3fe2bd72
commit
f35703b412
10 changed files with 87 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue