nixpkgs/instances/examples/basic.nix

14 lines
200 B
Nix

{
boot = {
autoDetectRootDevice = false;
rootDevice = "/dev/hda1";
readOnlyRoot = false;
grubDevice = "/dev/hda";
};
services = {
sshd = {
enable = true;
};
};
}