30 lines
564 B
Nix
30 lines
564 B
Nix
|
{ config, pkgs, ... }:
|
||
|
let
|
||
|
in
|
||
|
''# Watson configuration
|
||
|
# showing defaults commented out
|
||
|
|
||
|
# not implemented yet as of 2.0.1
|
||
|
#[backend]
|
||
|
#url = https://api.crick.fr
|
||
|
#token = yourapitoken
|
||
|
|
||
|
[options]
|
||
|
#options.confirm_new_project = false
|
||
|
#options.confirm_new_tag = false
|
||
|
date_format = %d.%m.%Y
|
||
|
#log_current = false
|
||
|
#pager = true
|
||
|
#report_current = false
|
||
|
#reverse_log = true
|
||
|
stop_on_start = true
|
||
|
#stop_on_restart = false
|
||
|
time_format = %H:%M%z
|
||
|
#week_start = monday
|
||
|
|
||
|
#[default_tags]
|
||
|
#project-name = tag1 tag2
|
||
|
#python101 = teaching python
|
||
|
#voyager2 = nasa 'space mission'
|
||
|
''
|