nixpkgs/configuration/examples/basic.nix
Eelco Dolstra 966f6e0fb0 * More refactoring.
svn path=/nixos/trunk/; revision=7534
2007-01-04 10:31:36 +00:00

20 lines
227 B
Nix

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