You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
445 B
32 lines
445 B
{
|
|
boot = {
|
|
loader.grub.device = "/dev/sda";
|
|
copyKernels = true;
|
|
bootMount = "(hd0,0)";
|
|
};
|
|
|
|
fileSystems = [
|
|
{ mountPoint = "/";
|
|
device = "/dev/sda3";
|
|
}
|
|
{ mountPoint = "/boot";
|
|
device = "/dev/sda1";
|
|
neededForBoot = true;
|
|
}
|
|
];
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/sda2"; }
|
|
];
|
|
|
|
services = {
|
|
sshd = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
fonts = {
|
|
enableFontConfig = false;
|
|
};
|
|
|
|
}
|