nixpkgs/instances/examples/basic.nix
Eelco Dolstra acacfda1b2 * Remove references to stdenvNew.
svn path=/nixos/trunk/; revision=7532
2007-01-04 10:21:25 +00:00

20 lines
227 B
Nix

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