mirror of
https://github.com/nix-community/home-manager
synced 2024-11-08 20:29:43 +01:00
820be197cc
The current module constrains to values in enum but khal supports RGB colors as well khal.readthedocs.io/en/latest/configure.html#the-calendars-section ! (be careful when setting an RGB value, it has to be quoted else it is ignored, got bitten by it with a manual config ) NB: It's also not possible to set addresses khal.readthedocs.io/en/latest/configure.html#the-calendars-section
73 lines
1.6 KiB
Nix
73 lines
1.6 KiB
Nix
{ ... }:
|
|
|
|
{
|
|
programs.khal = {
|
|
enable = true;
|
|
settings = {
|
|
default.timedelta = "5d";
|
|
view.agenda_event_format =
|
|
"{calendar-color}{cancelled}{start-end-time-style} {title}{repeat-symbol}{reset}";
|
|
};
|
|
|
|
};
|
|
accounts.calendar = {
|
|
basePath = "$XDG_CONFIG_HOME/cal";
|
|
accounts = {
|
|
test = {
|
|
primary = true;
|
|
primaryCollection = "test";
|
|
khal = {
|
|
enable = true;
|
|
readOnly = true;
|
|
color = "#ff0000";
|
|
type = "calendar";
|
|
};
|
|
local.type = "filesystem";
|
|
local.fileExt = ".ics";
|
|
name = "test";
|
|
remote = {
|
|
type = "http";
|
|
url = "https://example.com/events.ical";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
accounts.contact = {
|
|
basePath = "$XDG_CONFIG_HOME/card";
|
|
accounts = {
|
|
testcontacts = {
|
|
khal = {
|
|
enable = true;
|
|
collections = [ "default" "automaticallyCollected" ];
|
|
};
|
|
local.type = "filesystem";
|
|
local.fileExt = ".vcf";
|
|
name = "testcontacts";
|
|
remote = {
|
|
type = "http";
|
|
url = "https://example.com/contacts.vcf";
|
|
};
|
|
};
|
|
|
|
testcontactsNoCollections = {
|
|
khal.enable = true;
|
|
local.type = "filesystem";
|
|
local.fileExt = ".vcf";
|
|
name = "testcontactsNoCollections";
|
|
remote = {
|
|
type = "http";
|
|
url = "https://example.com/contacts.vcf";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
test.stubs = { khal = { }; };
|
|
|
|
nmt.script = ''
|
|
configFile=home-files/.config/khal/config
|
|
assertFileExists $configFile
|
|
assertFileContent $configFile ${./khal-config-expected}
|
|
'';
|
|
}
|