* Another example: NixOS on x86_64 on a USB stick.
svn path=/nixos/trunk/; revision=7787
This commit is contained in:
parent
0685f24957
commit
a1f512ede3
|
@ -0,0 +1,27 @@
|
||||||
|
# Configuration file used to install NixOS-x86_64 on a USB stick.
|
||||||
|
|
||||||
|
{
|
||||||
|
boot = {
|
||||||
|
grubDevice = "/dev/sda";
|
||||||
|
initrd = {
|
||||||
|
extraKernelModules = ["usb_storage" "ehci_hcd" "ohci_hcd"];
|
||||||
|
enableSplashScreen = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
fileSystems = [
|
||||||
|
{ mountPoint = "/";
|
||||||
|
label = "nixos-usb";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
ttyBackgrounds = {
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
fonts = {
|
||||||
|
enableFontConfig = false;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue