summaryrefslogtreecommitdiffstats
path: root/lass
diff options
context:
space:
mode:
authorlassulus <lass@aidsballs.de>2015-10-05 14:49:36 +0200
committerlassulus <lass@aidsballs.de>2015-10-05 14:49:36 +0200
commitcf28831057d95a73bbc2326f43b9d29a79fca12b (patch)
treefa34c38aee6cd5c8fef1e1fa0fec83460d4a9756 /lass
parent7c8ea4a87b50c2ffe982a1ba0c70579bea7cb4dd (diff)
move realwallpaper to krebs 3
Diffstat (limited to 'lass')
-rw-r--r--lass/3modules/default.nix1
-rw-r--r--lass/3modules/realwallpaper.nix102
2 files changed, 0 insertions, 103 deletions
diff --git a/lass/3modules/default.nix b/lass/3modules/default.nix
index 9b621127..9de987bf 100644
--- a/lass/3modules/default.nix
+++ b/lass/3modules/default.nix
@@ -3,6 +3,5 @@ _:
{
imports = [
./xresources.nix
- ./realwallpaper.nix
];
}
diff --git a/lass/3modules/realwallpaper.nix b/lass/3modules/realwallpaper.nix
deleted file mode 100644
index 85dd3523..00000000
--- a/lass/3modules/realwallpaper.nix
+++ /dev/null
@@ -1,102 +0,0 @@
-arg@{ config, lib, pkgs, ... }:
-
-let
- inherit (lib)
- mkEnableOption
- mkOption
- types
- mkIf
- ;
-
- lpkgs = import ../5pkgs { inherit pkgs; };
-
- cfg = config.lass.realwallpaper;
-
- out = {
- options.lass.realwallpaper = api;
- config = mkIf cfg.enable imp;
- };
-
- api = {
- enable = mkEnableOption "realwallpaper";
-
- workingDir = mkOption {
- type = types.str;
- 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 = "http://www.nnvl.noaa.gov/images/globaldata/SnowIceCover_Daily.png";
- };
-
- cloudmap = mkOption {
- type = types.str;
- default = "http://xplanetclouds.com/free/local/clouds_2048.jpg";
- };
-
- outFile = mkOption {
- type = types.str;
- default = "/tmp/wallpaper.png";
- };
-
- timerConfig = mkOption {
- type = types.unspecified;
- default = {
- OnCalendar = "*:0/15";
- };
- };
-
- };
-
- imp = {
- systemd.timers.realwallpaper = {
- description = "real wallpaper generator timer";
-
- timerConfig = cfg.timerConfig;
- };
-
- systemd.services.realwallpaper = {
- description = "real wallpaper generator";
- wantedBy = [ "multi-user.target" ];
- after = [ "network.target" ];
-
- path = with pkgs; [
- xplanet
- imagemagick
- curl
- file
- ];
-
- environment = {
- working_dir = cfg.workingDir;
- nightmap_url = cfg.nightmap;
- daymap_url = cfg.daymap;
- cloudmap_url = cfg.cloudmap;
- out_file = cfg.outFile;
- };
-
- restartIfChanged = true;
-
- serviceConfig = {
- Type = "simple";
- ExecStart = "${lpkgs.realwallpaper}/realwallpaper.sh";
- User = "realwallpaper";
- };
- };
-
- users.extraUsers.realwallpaper = {
- uid = 2009435407; #genid realwallpaper
- home = cfg.workingDir;
- createHome = true;
- };
- };
-
-in
-out
-