From 679f00fb3203ec503c977da4e6dd9b9646212e7e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 9 Sep 2017 14:49:58 +0200 Subject: Add shell module --- modules/shell.nix | 24 ++++++++++++++++++++++++ satoshipad.nix | 1 + 2 files changed, 25 insertions(+) create mode 100644 modules/shell.nix diff --git a/modules/shell.nix b/modules/shell.nix new file mode 100644 index 0000000..6598216 --- /dev/null +++ b/modules/shell.nix @@ -0,0 +1,24 @@ +{ config, pkgs, ... }: + +{ programs.zsh = { + enable = true; + promptInit = ""; + }; + programs.bash.enableCompletion = true; + + environment.systemPackages = with pkgs; [ + vim + pv + file + htop + lsof + iftop + nmap + netperf + psmisc + tree + zip + unzip + telnet + ]; +} diff --git a/satoshipad.nix b/satoshipad.nix index 624ac59..354403f 100644 --- a/satoshipad.nix +++ b/satoshipad.nix @@ -11,6 +11,7 @@ ./modules/syncthing.nix ./modules/hidpi.nix ./modules/nitrokey.nix + ./modules/shell.nix ]; networking.hostName = "satoshipad"; -- cgit 1.4.1