8c2fd764e2
svn path=/nixos/trunk/; revision=12723
22 lines
249 B
Nix
22 lines
249 B
Nix
{
|
|
boot = {
|
|
grubDevice = "/dev/sda";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/sda1";
|
|
}
|
|
];
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/sdb1"; }
|
|
];
|
|
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|