diesdas
This commit is contained in:
parent
3cac518ebf
commit
3c44560b1c
5 changed files with 21 additions and 5 deletions
12
home/R.nix
12
home/R.nix
|
|
@ -35,12 +35,23 @@
|
||||||
propagatedBuildInputs = [];
|
propagatedBuildInputs = [];
|
||||||
nativeBuildInputs = [];
|
nativeBuildInputs = [];
|
||||||
};
|
};
|
||||||
|
readODS = pkgs.rPackages.buildRPackage {
|
||||||
|
name = "goethR";
|
||||||
|
src = builtins.fetchGit {
|
||||||
|
url = "https://git@github.com/ktiu/readODS/";
|
||||||
|
ref = "v1.8";
|
||||||
|
rev = "03a194bac87b050c42d0e70c8cc638be79c6443d";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [xml2 cellranger readr stringi purrr zip];
|
||||||
|
nativeBuildInputs = [];
|
||||||
|
};
|
||||||
in [
|
in [
|
||||||
bookdown
|
bookdown
|
||||||
catmaply
|
catmaply
|
||||||
DAAG
|
DAAG
|
||||||
devtools
|
devtools
|
||||||
dplyr
|
dplyr
|
||||||
|
eurostat
|
||||||
extrafont
|
extrafont
|
||||||
ggplot2
|
ggplot2
|
||||||
jsonlite
|
jsonlite
|
||||||
|
|
@ -54,6 +65,7 @@
|
||||||
progress
|
progress
|
||||||
purrr
|
purrr
|
||||||
qrcode
|
qrcode
|
||||||
|
RColorBrewer
|
||||||
readODS
|
readODS
|
||||||
revealjs
|
revealjs
|
||||||
rlist
|
rlist
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ set use_envelope_from
|
||||||
unset reverse_realname
|
unset reverse_realname
|
||||||
|
|
||||||
# Searching
|
# Searching
|
||||||
# set nm_default_url = "notmuch:///home/till/.local/share/neomutt/mail/"
|
set nm_default_url = "notmuch:///home/till/.local/share/mail/"
|
||||||
|
|
||||||
# Multi-account setup
|
# Multi-account setup
|
||||||
# source ~/.config/neomutt/accounts/dkg.neomuttrc
|
# source ~/.config/neomutt/accounts/dkg.neomuttrc
|
||||||
|
|
|
||||||
|
|
@ -15,13 +15,14 @@
|
||||||
vimKeys = true;
|
vimKeys = true;
|
||||||
extraConfig = builtins.readFile ./config.neomuttrc;
|
extraConfig = builtins.readFile ./config.neomuttrc;
|
||||||
};
|
};
|
||||||
|
programs.notmuch.enable = true;
|
||||||
|
# xdg.configFile."notmuch/default/config".source = ./notmuch.config;
|
||||||
xdg.configFile."neomutt/bindings.neomuttrc".source = ./bindings.neomuttrc;
|
xdg.configFile."neomutt/bindings.neomuttrc".source = ./bindings.neomuttrc;
|
||||||
xdg.configFile."neomutt/smime.neomuttrc".source = ./smime.neomuttrc;
|
xdg.configFile."neomutt/smime.neomuttrc".source = ./smime.neomuttrc;
|
||||||
xdg.configFile."neomutt/mailcap".source = ./neomutt_mailcap;
|
xdg.configFile."neomutt/mailcap".source = ./neomutt_mailcap;
|
||||||
accounts.email = {
|
accounts.email = {
|
||||||
maildirBasePath = "${config.xdg.dataHome}/mail/imap";
|
maildirBasePath = "${config.xdg.dataHome}/mail/";
|
||||||
accounts = {
|
accounts = {
|
||||||
|
|
||||||
gu = {
|
gu = {
|
||||||
primary = true;
|
primary = true;
|
||||||
address = "straube@geo.uni-frankfurt.de";
|
address = "straube@geo.uni-frankfurt.de";
|
||||||
|
|
@ -30,6 +31,7 @@
|
||||||
smtp.host = "smtpauth.rz.uni-frankfurt.de";
|
smtp.host = "smtpauth.rz.uni-frankfurt.de";
|
||||||
smtp.tls.useStartTls = true;
|
smtp.tls.useStartTls = true;
|
||||||
userName = "tstraube";
|
userName = "tstraube";
|
||||||
|
notmuch.enable = true;
|
||||||
passwordCommand = "secret-tool lookup server uni-frankfurt.de account tstraube";
|
passwordCommand = "secret-tool lookup server uni-frankfurt.de account tstraube";
|
||||||
signature = {
|
signature = {
|
||||||
text = ''
|
text = ''
|
||||||
|
|
@ -77,13 +79,13 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ktiu = {
|
ktiu = {
|
||||||
address = "till@ktiu.net";
|
address = "till@ktiu.net";
|
||||||
realName = "Till Straube";
|
realName = "Till Straube";
|
||||||
imap.host = "shorbut.ktiu.net";
|
imap.host = "shorbut.ktiu.net";
|
||||||
smtp.host = "shorbut.ktiu.net";
|
smtp.host = "shorbut.ktiu.net";
|
||||||
smtp.tls.useStartTls = true;
|
smtp.tls.useStartTls = true;
|
||||||
|
notmuch.enable = true;
|
||||||
userName = "till";
|
userName = "till";
|
||||||
signature.text = ''
|
signature.text = ''
|
||||||
Till Straube (he, him, his)
|
Till Straube (he, him, his)
|
||||||
|
|
@ -112,7 +114,7 @@
|
||||||
set my_signature = ${
|
set my_signature = ${
|
||||||
pkgs.writeText
|
pkgs.writeText
|
||||||
"signature.txt"
|
"signature.txt"
|
||||||
config.accounts.email.accounts.gu.signature.text
|
config.accounts.email.accounts.ktiu.signature.text
|
||||||
}
|
}
|
||||||
color status yellow default
|
color status yellow default
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
setlocal spell
|
setlocal spell
|
||||||
setlocal textwidth=0
|
setlocal textwidth=0
|
||||||
|
setlocal shiftwidth=2
|
||||||
setlocal syntax=rmd
|
setlocal syntax=rmd
|
||||||
setlocal breakat-=@
|
setlocal breakat-=@
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ let
|
||||||
enotez
|
enotez
|
||||||
enumitem
|
enumitem
|
||||||
environ
|
environ
|
||||||
|
framed
|
||||||
gensymb
|
gensymb
|
||||||
lastpage
|
lastpage
|
||||||
ly1
|
ly1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue