From 40b1c5c448a7d71f723ec2d686efa86a679c5fdb Mon Sep 17 00:00:00 2001 From: Andrew McDermott Date: Sun, 10 May 2020 15:20:40 +0100 Subject: [PATCH] gnome-terminal: allow for 'system' theme variant PR #1228 --- modules/programs/gnome-terminal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/gnome-terminal.nix b/modules/programs/gnome-terminal.nix index 3c053ed5..d6aec994 100644 --- a/modules/programs/gnome-terminal.nix +++ b/modules/programs/gnome-terminal.nix @@ -186,7 +186,7 @@ in { themeVariant = mkOption { default = "default"; - type = types.enum [ "default" "light" "dark" ]; + type = types.enum [ "default" "light" "dark" "system" ]; description = "The theme variation to request"; };