nixpkgs/instances/examples/basic.nix

22 lines
287 B
Nix
Raw Normal View History

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