966f6e0fb0
svn path=/nixos/trunk/; revision=7534
20 lines
227 B
Nix
20 lines
227 B
Nix
{
|
|
boot = {
|
|
grubDevice = "/dev/hda";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/hda1";
|
|
}
|
|
];
|
|
|
|
swapDevices = ["/dev/hdb1"];
|
|
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|