about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-04-25 22:21:27 +0200
committerProfpatsch <mail@profpatsch.de>2016-04-25 22:21:27 +0200
commit21daf798c242f66207ecc373cf3cb49afcb3732b (patch)
treea8a5a43e3386e6c3e2aba0649817ab3bea870ab4 /machines
parent13df9a126fe0aee07ba96d2e9b2e5dfbf36cd84d (diff)
machines/labtop: standartise disk label & disk
Diffstat (limited to 'machines')
-rw-r--r--machines/labnet/labtop.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/machines/labnet/labtop.nix b/machines/labnet/labtop.nix
index 4ac85b0e..38d24c2c 100644
--- a/machines/labnet/labtop.nix
+++ b/machines/labnet/labtop.nix
@@ -9,18 +9,12 @@ let
   mkLabtops = lib.mapAttrs (name: cfg: callMachine (mkLabtop name cfg) {});
 
   labtop = {
-    boot.loader.grub.device = "/dev/sda";
 
     boot.kernelModules = [ "kvm-intel" ];
     boot.initrd.availableKernelModules = [
       "uhci_hcd" "ehci_pci" "ata_piix" "firewire_ohci" "usb_storage"
     ];
 
-    fileSystems."/" = {
-      device = "/dev/sda1";
-      fsType = "ext4";
-    };
-
     vuizvui.hardware.thinkpad.enable = true;
 
     hardware.trackpoint.enable = false;
@@ -39,12 +33,6 @@ let
 
   labhanns = {
     nixpkgs.system = "i686-linux";
-    boot.loader.grub.device = "/dev/sda";
-
-    fileSystems."/" = {
-      device = "/dev/sda1";
-      fsType = "ext4";
-    };
   };
 
 in