summary refs log tree commit diff
path: root/nixos/modules/services/networking/heyefi.nix
blob: fc2b5a8485780349af28921b7225e03388548ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{ config, lib, pkgs, ... }:

with lib;

let

  cfg = config.services.heyefi;
in

{

  ###### interface

  options = {

    services.heyefi = {

      enable = mkEnableOption "heyefi";

      cardMacaddress = mkOption {
        default = "";
        description = ''
          An Eye-Fi card MAC address.
          '';
      };

      uploadKey = mkOption {
        default = "";
        description = ''
          An Eye-Fi card's upload key.
          '';
      };

      uploadDir = mkOption {
        example = "/home/username/pictures";
        description = ''
          The directory to upload the files to.
          '';
      };

      user = mkOption {
        default = "root";
        description = ''
          heyefi will be run under this user (user must exist,
          this can be your user name).
        '';
      };

    };

  };


  ###### implementation

  config = mkIf cfg.enable {

    systemd.services.heyefi =
      {
        description = "heyefi service";
        after = [ "network.target" ];
        wantedBy = [ "multi-user.target" ];
        serviceConfig = {
          User = "${cfg.user}";
          Restart = "always";
          ExecStart = "${pkgs.heyefi}/bin/heyefi";
        };

      };

    environment.etc."heyefi/heyefi.config".text =
      ''
        # /etc/heyefi/heyefi.conf: DO NOT EDIT -- this file has been generated automatically.
        cards = [["${config.services.heyefi.cardMacaddress}","${config.services.heyefi.uploadKey}"]]
        upload_dir = "${toString config.services.heyefi.uploadDir}"
      '';

    environment.systemPackages = [ pkgs.heyefi ];

  };

}