neomutt?
This commit is contained in:
parent
3c3998d270
commit
02545a51e9
4 changed files with 25 additions and 7 deletions
|
|
@ -14,6 +14,9 @@
|
|||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
{
|
||||
environment.systemPackages = [
|
||||
nixpkgs.wl-clipboard
|
||||
];
|
||||
programs.sway.enable = true;
|
||||
networking.hostName = "romulus";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs;
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
sf
|
||||
tidyverse
|
||||
tmap
|
||||
languageserver
|
||||
];
|
||||
};
|
||||
in [
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@
|
|||
jq
|
||||
khal
|
||||
khard
|
||||
neomutt
|
||||
nodejs
|
||||
qutebrowser
|
||||
rstudio
|
||||
|
|
@ -38,6 +37,7 @@
|
|||
./R.nix
|
||||
./nvim
|
||||
./fish.nix
|
||||
./neomutt.nix
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
|
|
|
|||
14
home/neomutt.nix
Normal file
14
home/neomutt.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.neomutt = {
|
||||
# extraConfig = builtins.readFile ./config.vim;
|
||||
enable = true;
|
||||
vimKeys = true;
|
||||
# xdg.configFile."nvim/autocommmands.vim".source = ./autocommands.vim;
|
||||
# xdg.configFile."nvim/ftplugin/markdown.vim".source = ./ftplugin/markdown.vim;
|
||||
# xdg.configFile."nvim/ftplugin/r.vim".source = ./ftplugin/r.vim;
|
||||
# xdg.configFile."nvim/ftplugin/rmd.vim".source = ./ftplugin/rmd.vim;
|
||||
# xdg.configFile."nvim/syntax/rmd.vim".source = ./syntax/rmd.vim;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue