diff options
author | lassulus <lassulus@lassul.us> | 2020-03-25 15:39:25 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-03-25 15:39:25 +0100 |
commit | c76f1618940ff188258212a0988d3de7525f9e9e (patch) | |
tree | 216436c2f051810df8bddcf47f5efb1908d09638 /krebs/3modules/realwallpaper.nix | |
parent | 4337f9dbce769cf64eba0c9ade8097145e782a83 (diff) |
realwallpaper: redesign with new image sources
Diffstat (limited to 'krebs/3modules/realwallpaper.nix')
-rw-r--r-- | krebs/3modules/realwallpaper.nix | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/krebs/3modules/realwallpaper.nix b/krebs/3modules/realwallpaper.nix index a83758ccd..7a0052a4f 100644 --- a/krebs/3modules/realwallpaper.nix +++ b/krebs/3modules/realwallpaper.nix @@ -17,21 +17,6 @@ let default = "/var/realwallpaper/"; }; - nightmap = mkOption { - type = types.str; - default = "http://eoimages.gsfc.nasa.gov/images/imagerecords/55000/55167/earth_lights_lrg.jpg"; - }; - - daymap = mkOption { - type = types.str; - default = "https://www.nnvl.noaa.gov/images/globaldata/SnowIceCover_Daily.png"; - }; - - cloudmap = mkOption { - type = types.str; - default = "http://home.megapass.co.kr/~holywatr/cloud_data/clouds_2048.jpg"; - }; - marker = mkOption { type = types.str; default = "http://graph.r/marker.json"; @@ -67,9 +52,6 @@ let environment = { working_dir = cfg.workingDir; - nightmap_url = cfg.nightmap; - daymap_url = cfg.daymap; - cloudmap_url = cfg.cloudmap; marker_url = cfg.marker; }; |