10 lines
203 B
Nix
10 lines
203 B
Nix
let
|
|
clock = import ./clock.nix;
|
|
in {
|
|
format = "{:%R }";
|
|
format-alt = "{:%A %Y-%m-%d }";
|
|
tooltip-format = clock.tooltip-format;
|
|
calendar = clock.calendar;
|
|
actions = clock.actions;
|
|
}
|