Merge pull request #59480 from worldofpeace/fprintd-systemd

nixos/fprintd: use systemd.packages
This commit is contained in:
worldofpeace 2019-05-13 03:30:24 -04:00 committed by GitHub
commit b5f26f3803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";
};
};
}; };
} }