19 lines
159 B
Nix
19 lines
159 B
Nix
# Contractor
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.services.pantheon.contractor.enable {
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|