2007-01-24 12:50:38 +01:00
|
|
|
# Configuration file used to install NixOS-x86_64 on a USB stick.
|
|
|
|
|
|
|
|
{
|
|
|
|
boot = {
|
2013-04-10 23:49:59 +02:00
|
|
|
loader.grub.device = "/dev/sda";
|
2007-01-24 12:50:38 +01:00
|
|
|
initrd = {
|
2009-12-15 15:05:01 +01:00
|
|
|
kernelModules = ["usb_storage" "ehci_hcd" "ohci_hcd"];
|
2007-01-24 12:50:38 +01:00
|
|
|
enableSplashScreen = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems = [
|
|
|
|
{ mountPoint = "/";
|
|
|
|
label = "nixos-usb";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
services = {
|
|
|
|
ttyBackgrounds = {
|
|
|
|
enable = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
fonts = {
|
|
|
|
enableFontConfig = false;
|
|
|
|
};
|
|
|
|
}
|