add zig & nix support to vscode

This commit is contained in:
Cyryl Płotnicki 2022-01-08 10:23:29 +00:00
parent 66a8c35387
commit 0c20360b62
2 changed files with 20 additions and 5 deletions

View file

@ -9,7 +9,7 @@ in
address = "cyplo@cyplo.dev"; address = "cyplo@cyplo.dev";
aliases = [ "cyplo@cyplo.net" ]; aliases = [ "cyplo@cyplo.net" ];
realName = "Cyryl Płotnicki"; realName = "Cyryl Płotnicki";
userName = "cyplo"; userName = "cyplo@cyplo.dev";
imap = { imap = {
host = "127.0.0.1"; host = "127.0.0.1";
port = 1143; port = 1143;
@ -21,7 +21,10 @@ in
smtp = { smtp = {
host = "127.0.0.1"; host = "127.0.0.1";
port = 1025; port = 1025;
tls.enable = false; tls = {
enable = false;
useStartTls = false;
};
}; };
notmuch.enable = true; notmuch.enable = true;
himalaya.enable = true; himalaya.enable = true;
@ -52,13 +55,13 @@ in
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
hydroxide unstable.protonmail-bridge
]; ];
systemd.user.services."hydroxide" = { systemd.user.services."proton-bridge" = {
Unit.Description = "Bridge to ProtonMail"; Unit.Description = "Bridge to ProtonMail";
Install.WantedBy = [ "default.target" ]; Install.WantedBy = [ "default.target" ];
Service.ExecStart = "${unstable.hydroxide}/bin/hydroxide serve"; Service.ExecStart = "${unstable.protonmail-bridge}/bin/protonmail-bridge --noninteractive";
}; };
}; };

View file

@ -27,12 +27,24 @@
version = "1.21.7"; version = "1.21.7";
sha256 = "sha256-nCcDafZ2CUhTjVha+6Mjxoil61xMGboO5lajc7dGEJg="; sha256 = "sha256-nCcDafZ2CUhTjVha+6Mjxoil61xMGboO5lajc7dGEJg=";
} }
{
publisher = "bbenoist";
name = "nix";
version = "1.0.1";
sha256 = "sha256-qwxqOGublQeVP2qrLF94ndX/Be9oZOn+ZMCFX1yyoH0=";
}
{ {
publisher = "matklad"; publisher = "matklad";
name = "rust-analyzer"; name = "rust-analyzer";
version = "0.2.792"; version = "0.2.792";
sha256 = "sha256-OPSZ1sKVxgh8SN9UR8vtlICdznUXdaCkzNJBX5w1j9Q="; sha256 = "sha256-OPSZ1sKVxgh8SN9UR8vtlICdznUXdaCkzNJBX5w1j9Q=";
} }
{
publisher = "tiehuis";
name = "zig";
version = "0.2.5";
sha256 = "sha256-P8Sep0OtdchTfnudxFNvIK+SW++TyibGVI9zd+B5tu4=";
}
{ {
publisher = "sjhuangx"; publisher = "sjhuangx";
name = "vscode-scheme"; name = "vscode-scheme";