From 13d2c470be30622108609635cda79c09cd11429f Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 31 Mar 2019 13:00:09 +0200 Subject: [PATCH] home-environment: use attrsOf instead of attrs --- modules/home-environment.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-environment.nix b/modules/home-environment.nix index e1087f8d4..a25501fd7 100644 --- a/modules/home-environment.nix +++ b/modules/home-environment.nix @@ -146,7 +146,7 @@ in home.sessionVariables = mkOption { default = {}; - type = types.attrs; + type = with types; attrsOf (either int str); example = { EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4"; }; description = '' Environment variables to always set at login.