mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
df931a59a5
After taskwarrior 2.6.0, its default config file now locates at `$XDG_CONFIG_HOME/task/taskrc`, and builtin themes can be included via relative paths.
40 lines
937 B
Nix
40 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
|
|
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|