nixos/fprintd: use systemd.packages

Upstream has a systemd service.
This commit is contained in:
worldofpeace 2019-04-14 10:19:57 -04:00
parent 05a53ecd82
commit 6846d4ab85

View File

@ -26,28 +26,20 @@ in
}; };
}; };
}; };
###### implementation ###### implementation
config = mkIf cfg.enable { config = mkIf cfg.enable {
services.dbus.packages = [ pkgs.fprintd ]; services.dbus.packages = [ pkgs.fprintd ];
environment.systemPackages = [ pkgs.fprintd ]; environment.systemPackages = [ pkgs.fprintd ];
systemd.services.fprintd = { systemd.packages = [ pkgs.fprintd ];
description = "Fingerprint Authentication Daemon";
serviceConfig = {
Type = "dbus";
BusName = "net.reactivated.Fprint";
ExecStart = "${pkgs.fprintd}/libexec/fprintd";
};
};
}; };
} }