From 1a592f3a4e40940f6645298e01a9597c36e4925c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 5 Jan 2007 00:28:48 +0000 Subject: [PATCH] * hda is called sda now. svn path=/nixos/trunk/; revision=7535 --- configuration/examples/basic.nix | 6 +++--- configuration/examples/svn-server.nix | 11 +++++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/configuration/examples/basic.nix b/configuration/examples/basic.nix index 430ed8de1d52..0676f6e39fcc 100644 --- a/configuration/examples/basic.nix +++ b/configuration/examples/basic.nix @@ -1,15 +1,15 @@ { boot = { - grubDevice = "/dev/hda"; + grubDevice = "/dev/sda"; }; fileSystems = [ { mountPoint = "/"; - device = "/dev/hda1"; + device = "/dev/sda1"; } ]; - swapDevices = ["/dev/hdb1"]; + swapDevices = ["/dev/sdb1"]; services = { sshd = { diff --git a/configuration/examples/svn-server.nix b/configuration/examples/svn-server.nix index 33006d7edd65..7f2dafe16adb 100644 --- a/configuration/examples/svn-server.nix +++ b/configuration/examples/svn-server.nix @@ -1,11 +1,14 @@ { boot = { - autoDetectRootDevice = false; - rootDevice = "/dev/hda1"; - readOnlyRoot = false; - grubDevice = "/dev/hda"; + grubDevice = "/dev/sda"; }; + fileSystems = [ + { mountPoint = "/"; + device = "/dev/sda1"; + } + ]; + services = { sshd = {