mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
1852d493f4
svn path=/nixos/trunk/; revision=7379
14 lines
200 B
Nix
14 lines
200 B
Nix
{
|
|
boot = {
|
|
autoDetectRootDevice = false;
|
|
rootDevice = "/dev/hda1";
|
|
readOnlyRoot = false;
|
|
grubDevice = "/dev/hda";
|
|
};
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|