about summary refs log tree commit diff
path: root/machines/profpatsch/base-workstation.nix
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2017-01-27 00:50:47 +0100
committerProfpatsch <mail@profpatsch.de>2017-01-27 00:50:47 +0100
commit6e831ef05284590b53d179ff3755076b3e6dbdb3 (patch)
treefe379d0518d8956319e9f734b89561bea1bfc7af /machines/profpatsch/base-workstation.nix
parentf19a54d6c8efea1e2354f4cd8e418c2ccf9b6641 (diff)
machines/profpatsch: factor out basic server config
Diffstat (limited to 'machines/profpatsch/base-workstation.nix')
-rw-r--r--machines/profpatsch/base-workstation.nix16
1 files changed, 5 insertions, 11 deletions
diff --git a/machines/profpatsch/base-workstation.nix b/machines/profpatsch/base-workstation.nix
index 19b3aa09..ae9fa7a0 100644
--- a/machines/profpatsch/base-workstation.nix
+++ b/machines/profpatsch/base-workstation.nix
@@ -8,6 +8,10 @@ let
 
 in {
 
+  imports = [
+    ./base.nix
+  ];
+
   config = {
 
     boot.loader = {
@@ -29,7 +33,6 @@ in {
 
     programs.ssh.startAgent = false;
 
-
     ###########
     # Packages
 
@@ -40,27 +43,18 @@ in {
       # of utmost necessity for me to function
       basePkgs = [
         silver-searcher   # file content searcher, > ack > grep
-        curl              # transfer data to/from a URL
         dos2unix          # text file conversion
-        file              # file information
-        git               # version control system
-        htop              # top replacement
         manpages          # system manpages (not included by default)
         mkpasswd          # UNIX password creator
-        nmap              # stats about clients in the network
-        rsync             # file syncing tool
         smartmontools     # check disk state
         stow              # dotfile management
-        tmux              # detachable terminal multiplexer
         traceroute        # trace ip routes
-        wget              # the other URL file fetcher
         wirelesstools     # iwlist (wifi scan)
-        myPkgs.vim        # slight improvement over vi
       ];
     in basePkgs;
 
     # friendly user shell
-    programs.fish.enable = true;
+   programs.fish.enable = true;
 
     ###########
     # Services