summary refs log tree commit diff
path: root/nixos/modules/services/x11/redshift.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:11:32 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-15 18:11:32 +0200
commit19ffa212af8763e84e09e1e56fba99e1d7124d84 (patch)
treef205e5a65dbea20a0bc79fa45ef75f6c577dffdf /nixos/modules/services/x11/redshift.nix
parentc738b309eea83669bbd590f7293db5d725233193 (diff)
downloadnixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.gz
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.bz2
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.lz
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.xz
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.tar.zst
nixpkgs-19ffa212af8763e84e09e1e56fba99e1d7124d84.zip
types.uniq types.int -> types.int
types.int already implies uniqueness.
Diffstat (limited to 'nixos/modules/services/x11/redshift.nix')
-rw-r--r--nixos/modules/services/x11/redshift.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/x11/redshift.nix b/nixos/modules/services/x11/redshift.nix
index 4ccb9153526..99d19f6ab15 100644
--- a/nixos/modules/services/x11/redshift.nix
+++ b/nixos/modules/services/x11/redshift.nix
@@ -26,12 +26,12 @@ in {
       day = mkOption {
         description = "Colour temperature to use during day time";
         default = 5500;
-        type = types.uniq types.int;
+        type = types.int;
       };
       night = mkOption {
         description = "Colour temperature to use during night time";
         default = 3700;
-        type = types.uniq types.int;
+        type = types.int;
       };
     };