summary refs log tree commit diff
path: root/nixos/modules/config/fonts
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2015-08-17 17:52:45 +0000
committerJan Malakhovski <oxij@oxij.org>2015-09-18 18:48:50 +0000
commit6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a (patch)
tree55e2983e16662e1074e9e668998253d31b429d59 /nixos/modules/config/fonts
parent33ae3f2fe4baeb4db19d3c90dbb6cd35b9373004 (diff)
downloadnixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar.gz
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar.bz2
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar.lz
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar.xz
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.tar.zst
nixpkgs-6eadb16022b6e52f3cdb2167aaa7b82e221bfc1a.zip
nixos: fix some types
Diffstat (limited to 'nixos/modules/config/fonts')
-rw-r--r--nixos/modules/config/fonts/fontconfig.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix
index 922a9cf961d..be6662decea 100644
--- a/nixos/modules/config/fonts/fontconfig.nix
+++ b/nixos/modules/config/fonts/fontconfig.nix
@@ -108,10 +108,8 @@ with lib;
         subpixel = {
 
           rgba = mkOption {
-            type = types.string // {
-              check = flip elem ["rgb" "bgr" "vrgb" "vbgr" "none"];
-            };
             default = "rgb";
+            type = types.enum ["rgb" "bgr" "vrgb" "vbgr" "none"];
             description = ''
               Subpixel order, one of <literal>none</literal>,
               <literal>rgb</literal>, <literal>bgr</literal>,
@@ -120,10 +118,8 @@ with lib;
           };
 
           lcdfilter = mkOption {
-            type = types.str // {
-              check = flip elem ["none" "default" "light" "legacy"];
-            };
             default = "default";
+            type = types.enum ["none" "default" "light" "legacy"];
             description = ''
               FreeType LCD filter, one of <literal>none</literal>,
               <literal>default</literal>, <literal>light</literal>, or