* hda is called sda now.

svn path=/nixos/trunk/; revision=7535
This commit is contained in:
Eelco Dolstra 2007-01-05 00:28:48 +00:00
parent 966f6e0fb0
commit 1a592f3a4e
2 changed files with 10 additions and 7 deletions

View File

@ -1,15 +1,15 @@
{ {
boot = { boot = {
grubDevice = "/dev/hda"; grubDevice = "/dev/sda";
}; };
fileSystems = [ fileSystems = [
{ mountPoint = "/"; { mountPoint = "/";
device = "/dev/hda1"; device = "/dev/sda1";
} }
]; ];
swapDevices = ["/dev/hdb1"]; swapDevices = ["/dev/sdb1"];
services = { services = {
sshd = { sshd = {

View File

@ -1,11 +1,14 @@
{ {
boot = { boot = {
autoDetectRootDevice = false; grubDevice = "/dev/sda";
rootDevice = "/dev/hda1";
readOnlyRoot = false;
grubDevice = "/dev/hda";
}; };
fileSystems = [
{ mountPoint = "/";
device = "/dev/sda1";
}
];
services = { services = {
sshd = { sshd = {