This commit is contained in:
2025-01-16 13:22:22 -05:00
parent a818d3d1df
commit 679ebeacba
7 changed files with 262 additions and 110 deletions

View File

@@ -103,25 +103,25 @@
basePath = ".calendar";
accounts.personal = {
primary = true;
primaryCollection = "default";
primaryCollection = "personal";
remote = {
type = "caldav";
url = "https://baikal.michaelthomson.dev/dav.php";
url = "https://nextcloud.michaelthomson.dev/remote.php/dav";
userName = "michael@michaelthomson.dev";
passwordCommand = [
"pass"
"calendar/michael@michaelthomson.dev"
"rbw"
"get"
"nextcloud.michaelthomson.dev"
];
};
vdirsyncer = {
enable = true;
auth = "basic";
collections = ["default" "shared"];
collections = ["personal"];
};
khal = {
enable = true;
addresses = ["michael@michaelthomson.dev"];
type = "discover";
type = "calendar";
};
};
};
@@ -134,22 +134,26 @@
};
remote = {
type = "carddav";
url = "https://baikal.michaelthomson.dev/dav.php";
url = "https://nextcloud.michaelthomson.dev/remote.php/dav";
userName = "michael@michaelthomson.dev";
passwordCommand = [
"pass"
"calendar/michael@michaelthomson.dev"
"rbw"
"get"
"nextcloud.michaelthomson.dev"
];
};
vdirsyncer = {
enable = true;
auth = "basic";
collections = ["default"];
collections = ["contacts"];
};
khal = {
enable = true;
addresses = ["michael@michaelthomson.dev"];
collections = ["default"];
collections = ["contacts"];
};
khard = {
enable = true;
defaultCollection = "contacts";
};
};
};

View File

@@ -1,10 +1,12 @@
{
pkgs,
config,
inputs,
...
}: {
programs.ghostty = {
enable = true;
enable = false;
#package = inputs.ghostty.packages.${pkgs.system}.default;
enableZshIntegration = true;
installVimSyntax = true;
settings = {

View File

@@ -522,6 +522,9 @@ lib,
enable = true;
tslsIntegration = true;
};
angularls = {
enable = true;
};
gopls = {
enable = true;
};