From e8fb9f50cef8e79c120f257af62b457ebfc5574c Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 10 May 2017 00:20:15 +0200 Subject: [PATCH] gnome-terminal: use `attrsOf` rather than `loaOf` Since the attribute names carry semantic meaning we should be more strict about the type. --- 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 bbd2b3928..052962c77 100644 --- a/modules/programs/gnome-terminal.nix +++ b/modules/programs/gnome-terminal.nix @@ -169,7 +169,7 @@ in profile = mkOption { default = {}; - type = types.loaOf profileSubModule; + type = types.attrsOf profileSubModule; description = "A set of Gnome Terminal profiles."; }; };