This commit is contained in:
Till 2025-11-11 17:18:26 +01:00
parent 405dfebee4
commit 04ebeccf3a
6 changed files with 30 additions and 15 deletions

View file

@ -61,7 +61,7 @@ macro index,pager gi "<change-folder>~/.local/share/mail/ktiu/Inbox<enter><re
macro index,pager L "<limit>all\n" "Show all messages (undo limit)"
# macro index,pager go "<shell-escape>mbsync -c ~/.config/mbsync/mbsyncrc $my_mbsync_acct && notmuch new<enter>" \
# macro index,pager go "<shell-escape>mbsync -c ~/.config/mbsync/mbsyncrc $my_mbsync_acct && notmuch new &<enter>" \
# "Run mbsync to sync mail for this account"
macro index,pager go "<shell-escape>mbsync $my_mbsync_acct && notmuch new<enter>" \

View file

@ -26,11 +26,10 @@ lua <<EOF
['<C-f>'] = cmp.mapping.scroll_docs(4),
},
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
-- { name = 'ultisnips' },
{ name = 'emoji' },
{ name = 'nvim_lsp' },
{ name = 'emoji' },
}, {
{ name = 'buffer' },
{ name = 'buffer', option = { keyword_pattern = [[\k\+]]}},
})
})

View file

@ -29,7 +29,7 @@
src = builtins.fetchGit {
url = "ssh://git@arielle.ktiu.net/home/git/goethR/";
ref = "main";
rev = "f84139455723907258c98384dca9cc58ddfff0ed";
rev = "e3dbfd319f01adfa4a1a1a8abc274014e6498aae";
};
propagatedBuildInputs = [];
nativeBuildInputs = [];

View file

@ -22,7 +22,10 @@
};
};
"${config.networking.fqdn}-80" = {
serverAliases = [ "*.ktiu.net" "*.t9e.me" ];
serverAliases = [
"*.ktiu.net"
"*.t9e.me"
];
locations."/.well-known/acme-challenge" = {
root = "/var/lib/acme/.challenges";
};

View file

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."kein-schlussstrich-hessen.org" = {
forceSSL = true;
enableACME = true;
root = "/var/www/kein-schlussstrich-hessen.org/dist";
};
services.nginx.virtualHosts."kein-schlussstrich-hessen.de" = {
serverAliases = [
"www.kein-schlussstrich-hessen.de"
"www.kein-schlussstrich-hessen.org"
]
globalRedirect = "kein-schlussstrich-hessen.org";
enableACME = true;
};
}

View file

@ -1,15 +1,10 @@
{ config, pkgs, ... }:
{
security.acme.certs."${config.networking.domain}".extraDomainNames = [ "kshmap.ktiu.net" ];
services.nginx.virtualHosts."kshmap.ktiu.net" = {
# forceSSL = true;
# enableACME = true;
services.nginx.virtualHosts."karte.kein-schlussstrich-hessen.org" = {
forceSSL = true;
enableACME = true;
onlySSL = true;
useACMEHost = config.networking.domain;
root = "/var/www/ksh-map/dist";
};
}