This commit is contained in:
Till 2026-01-23 11:09:06 +01:00
parent 415e3c1caf
commit 7f9c096123
11 changed files with 56 additions and 52 deletions

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
programs.msmtp = {
@ -50,7 +50,7 @@
msmtp.enable = true;
neomutt = {
enable = true;
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
sendMailCommand = lib.getExe pkgs.msmtp;
extraConfig = ''
set mbox='+Archive'
set my_junk='+Spamverdacht'
@ -104,7 +104,7 @@
};
neomutt = {
enable = true;
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
sendMailCommand = lib.getExe pkgs.msmtp;
extraConfig = ''
set my_mbsync_acct='t9e'
set mbox='+Archive'
@ -153,7 +153,7 @@
};
neomutt = {
enable = true;
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
sendMailCommand = lib.getExe pkgs.msmtp;
extraConfig = ''
set my_mbsync_acct='ktiu'
@ -198,7 +198,8 @@
signature.showSignature = "append";
neomutt = {
enable = true;
sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
# sendMailCommand = "/home/till/.nix-profile/bin/msmtp";
sendMailCommand = lib.getExe pkgs.msmtp;
extraConfig = ''
set my_mbsync_acct='ksh'
set mbox='+Erledigt'
@ -230,16 +231,16 @@
};
};
programs.neovim.plugins = with pkgs.vimPlugins; [ lazy-nvim ];
programs.neovim.plugins = with pkgs.vimPlugins; [
{
plugin = vim-pathogen;
config = "execute pathogen#infect()";
}
];
xdg.configFile."nvim/lua/woof-vim.lua".text = ''
return {
"woof-vim",
name = "woof-vim",
dev = {
path = "~/devel"
}
}
'';
xdg.configFile."nvim/bundle/woof-vim" = {
source = config.lib.file.mkOutOfStoreSymlink "/home/till/devel/woof-vim";
recursive = true;
};
}