mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
c78a1d9781
swapDevices option. svn path=/nixos/trunk/; revision=7448
21 lines
287 B
Nix
21 lines
287 B
Nix
{
|
|
boot = {
|
|
autoDetectRootDevice = false;
|
|
readOnlyRoot = false;
|
|
grubDevice = "/dev/hda";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/hda1";
|
|
}
|
|
];
|
|
|
|
swapDevices = ["/dev/hdb1"];
|
|
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|