nixpkgs/instances/examples/basic.nix
Eelco Dolstra c78a1d9781 * Upstart job to start swapping to the devices or files listed in the
swapDevices option.

svn path=/nixos/trunk/; revision=7448
2006-12-21 01:07:23 +00:00

22 lines
287 B
Nix

{
boot = {
autoDetectRootDevice = false;
readOnlyRoot = false;
grubDevice = "/dev/hda";
};
fileSystems = [
{ mountPoint = "/";
device = "/dev/hda1";
}
];
swapDevices = ["/dev/hdb1"];
services = {
sshd = {
enable = true;
};
};
}