nixpkgs/configuration/examples/basic.nix
Eelco Dolstra 1a592f3a4e * hda is called sda now.
svn path=/nixos/trunk/; revision=7535
2007-01-05 00:28:48 +00:00

20 lines
227 B
Nix

{
boot = {
grubDevice = "/dev/sda";
};
fileSystems = [
{ mountPoint = "/";
device = "/dev/sda1";
}
];
swapDevices = ["/dev/sdb1"];
services = {
sshd = {
enable = true;
};
};
}