10 lines
234 B
Nix
10 lines
234 B
Nix
{ config, depot, lib, ... }:
|
|
|
|
{
|
|
options.reflection = lib.mkOption {
|
|
description = "Peer into the Watchman's Glass.";
|
|
type = lib.types.raw;
|
|
readOnly = true;
|
|
default = depot.hours.${config.networking.hostName};
|
|
};
|
|
}
|