mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
15 lines
387 B
Nix
15 lines
387 B
Nix
{lib, ...}: {
|
|
xdg.configFile = {
|
|
"plasma_calendar_alternatecalendar".text = lib.generators.toINI {} {
|
|
General = {
|
|
calendarSystem = "Chinese";
|
|
dateOffset = 0;
|
|
};
|
|
};
|
|
"plasma_calendar_holiday_regions".text = lib.generators.toINI {} {
|
|
General = {
|
|
selectedRegions = "cn_zh-cn,gb-sct_en-gb,hk_zh-cn,gb-eaw_en-gb";
|
|
};
|
|
};
|
|
};
|
|
}
|