mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
20 lines
385 B
Nix
20 lines
385 B
Nix
|
{
|
||
|
programs.todoman = {
|
||
|
enable = true;
|
||
|
glob = "*/*";
|
||
|
extraConfig = ''
|
||
|
date_format = "%d.%m.%Y"
|
||
|
default_list = "test"
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
accounts.calendar.basePath = "base/path/calendar";
|
||
|
|
||
|
nmt.script = ''
|
||
|
configFile=home-files/.config/todoman/config.py
|
||
|
assertFileExists $configFile
|
||
|
assertFileContent $configFile ${./todoman-config-expected}
|
||
|
'';
|
||
|
}
|
||
|
|