mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
42 lines
625 B
Nix
42 lines
625 B
Nix
# Contractor
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
meta.maintainers = pkgs.pantheon.maintainers;
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.pantheon.contractor = {
|
|
|
|
enable = mkEnableOption "contractor, a desktop-wide extension service used by pantheon";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.services.pantheon.contractor.enable {
|
|
|
|
environment.systemPackages = with pkgs.pantheon; [
|
|
contractor
|
|
extra-elementary-contracts
|
|
];
|
|
|
|
services.dbus.packages = [ pkgs.pantheon.contractor ];
|
|
|
|
environment.pathsToLink = [
|
|
"/share/contractor"
|
|
];
|
|
|
|
};
|
|
|
|
}
|