summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGrigory Shipunov2022-06-17 13:12:25 +0200
committerGrigory Shipunov2022-06-17 13:12:25 +0200
commit2a83361681a03440cf644e5a398bb076d237cb5d (patch)
tree93262c3e1f5029a34ec39bfb4601837fe3531bcc /modules
parent1e4b828aab069b482f082115f7f9ac249f19d2d4 (diff)
basic-tools.nix: reorganise
Diffstat (limited to 'modules')
-rw-r--r--modules/basic-tools.nix13
-rw-r--r--modules/mail.nix7
2 files changed, 9 insertions, 11 deletions
diff --git a/modules/basic-tools.nix b/modules/basic-tools.nix
index e42d162..4e8cf58 100644
--- a/modules/basic-tools.nix
+++ b/modules/basic-tools.nix
@@ -7,16 +7,14 @@
fd
file
fzf
- gitFull
+ git
gnupg
htop
irssi
killall
- mercurial
neovim
ripgrep
tealdeer
- tokei
traceroute
tree
liquidprompt
@@ -26,8 +24,6 @@
bind
nnn
man-pages
- neomutt
- cachix
];
nix = {
@@ -59,9 +55,6 @@
vi = "nvim";
vf = "$EDITOR $(fzf)";
vff = "$EDITOR $(ls|fzf)";
- ls = "exa";
- ll = "exa -l";
- l = "exa -al";
ssh = "TERM=xterm-256color ssh";
mutt = "neomutt";
};
@@ -89,9 +82,7 @@
LP_ENABLE_SCREEN_TITLE=1
'';
};
- programs.msmtp = {
- enable = true;
- };
+
programs.iftop.enable = true;
programs.mosh.enable = true;
}
diff --git a/modules/mail.nix b/modules/mail.nix
new file mode 100644
index 0000000..01538f8
--- /dev/null
+++ b/modules/mail.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }: {
+ environment.systemPackages = with pkgs; [
+ neomutt
+ ];
+
+ programs.msmtp.enable = true;
+}