mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
41 lines
937 B
Nix
41 lines
937 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.taskwarrior = {
|
||
|
enable = true;
|
||
|
colorTheme = "dark-violets-256";
|
||
|
dataLocation = "/some/data/location";
|
||
|
config = {
|
||
|
urgency.user.tag.next.coefficient = 42.42;
|
||
|
urgency.blocked.coefficient = -42;
|
||
|
};
|
||
|
extraConfig = ''
|
||
|
include /my/stuff
|
||
|
urgency.user.tag.test.coefficient=-42.42
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
test.stubs.taskwarrior = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.config/task/taskrc
|
||
|
assertFileContent home-files/.config/task/taskrc ${
|
||
|
pkgs.writeText "taskwarrior.expected" ''
|
||
|
data.location=/some/data/location
|
||
|
include dark-violets-256.theme
|
||
|
|
||
|
urgency.blocked.coefficient=-42
|
||
|
urgency.user.tag.next.coefficient=42.420000
|
||
|
|
||
|
include /my/stuff
|
||
|
urgency.user.tag.test.coefficient=-42.42
|
||
|
|
||
|
''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|