dotfiles/nix-conf/home/includes/linux-server.nix

17 lines
163 B
Nix
Raw Normal View History

2022-09-10 14:51:06 +00:00
{ config, pkgs, ... }:
{
2022-10-22 13:37:23 +00:00
imports = [
./common.nix
];
2022-09-10 14:51:06 +00:00
home.packages = with pkgs; [
emacs-nox
irssi
2022-10-22 13:37:23 +00:00
msmtp
neomutt
2022-09-10 14:51:06 +00:00
];
2022-10-22 13:37:23 +00:00
## TODO tmux
2022-09-10 14:51:06 +00:00
}