nixpkgs/configuration/examples/basic.nix

20 lines
227 B
Nix
Raw Normal View History

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