diff options
Diffstat (limited to 'nix-conf/home/includes/linux-server.nix')
-rw-r--r-- | nix-conf/home/includes/linux-server.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nix-conf/home/includes/linux-server.nix b/nix-conf/home/includes/linux-server.nix new file mode 100644 index 0000000..7006350 --- /dev/null +++ b/nix-conf/home/includes/linux-server.nix @@ -0,0 +1,16 @@ +{ config, pkgs, ... }: +{ + imports = [ + ./common.nix + ]; + + home.packages = with pkgs; [ + emacs-nox + irssi + msmtp + neomutt + ]; + + ## TODO tmux +} + |