summary refs log tree commit diff
path: root/nixos/modules/installer
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-04 10:33:52 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-06-04 11:06:44 +0200
commit6bf18533878c751c2f630d16ccfec471441e8477 (patch)
tree7460cd40838dbcb375a0d7ed30941829e159b1f7 /nixos/modules/installer
parenta53955eac99ce2933b6bdbf6d152754878c063b5 (diff)
downloadnixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar.gz
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar.bz2
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar.lz
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar.xz
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.tar.zst
nixlib-6bf18533878c751c2f630d16ccfec471441e8477.zip
Don't include 4 editors in the minimal installation CD
Emphasis on "minimal".
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
index 189cca9e23b9..d14768bc1079 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical.nix
@@ -11,9 +11,16 @@ with lib;
   # Provide wicd for easy wireless configuration.
   #networking.wicd.enable = true;
 
-  # Include gparted for partitioning disks
-  environment.systemPackages = [ pkgs.gparted ];
-  
+  environment.systemPackages =
+    [ # Include gparted for partitioning disks.
+      pkgs.gparted
+
+      # Include some editors.
+      pkgs.vim
+      pkgs.bvi # binary editor
+      pkgs.joe
+    ];
+
   # Provide networkmanager for easy wireless configuration.
   networking.networkmanager.enable = true;
   networking.wireless.enable = mkForce false;
@@ -67,7 +74,7 @@ with lib;
       loadTemplate("org.kde.plasma-desktop.defaultPanel")
 
       for (var i = 0; i < screenCount; ++i) {
-      	var desktop = new Activity
+        var desktop = new Activity
         desktop.name = i18n("Desktop")
         desktop.screen = i
         desktop.wallpaperPlugin = 'image'
@@ -75,7 +82,7 @@ with lib;
 
         var folderview = desktop.addWidget("folderview");
         folderview.writeConfig("url", "desktop:/");
-        
+
         //Create more panels for other screens
         if (i > 0){
           var panel = new Panel