* hda is called sda now.
svn path=/nixos/trunk/; revision=7535
This commit is contained in:
parent
966f6e0fb0
commit
1a592f3a4e
|
@ -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 = {
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue