all repos — nixfiles @ 679f00fb3203ec503c977da4e6dd9b9646212e7e

System and user configuration, managed by nix and home-manager

Add shell module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:49:58 +0200
commit

679f00fb3203ec503c977da4e6dd9b9646212e7e

parent

7cff825c1df5494c6c070ad34f5288b9b7786cfc

2 files changed, 25 insertions(+), 0 deletions(-)

jump to
A 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
+  ];
+}
M satoshipad.nixsatoshipad.nix
@@ -11,6 +11,7 @@ ./modules/adb.nix     ./modules/syncthing.nix
     ./modules/hidpi.nix
     ./modules/nitrokey.nix
+    ./modules/shell.nix
   ];
 
   networking.hostName = "satoshipad";