mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
* Don't use gensplash on x86_64 since it doesn't build and I'm too
lazy to fix it right now. svn path=/nixos/trunk/; revision=7759
This commit is contained in:
parent
cdb98f8418
commit
c5326d8f00
1 changed files with 4 additions and 0 deletions
|
@ -11,6 +11,9 @@ rec {
|
||||||
readOnlyRoot = true;
|
readOnlyRoot = true;
|
||||||
# The label used to identify the installation CD.
|
# The label used to identify the installation CD.
|
||||||
rootLabel = "NIXOS";
|
rootLabel = "NIXOS";
|
||||||
|
initrd = {
|
||||||
|
enableSplashScreen = pkgs.system != "x86_64-linux";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
@ -37,6 +40,7 @@ rec {
|
||||||
|
|
||||||
# And a background to go with that.
|
# And a background to go with that.
|
||||||
ttyBackgrounds = {
|
ttyBackgrounds = {
|
||||||
|
enable = pkgs.system != "x86_64-linux";
|
||||||
specificThemes = [
|
specificThemes = [
|
||||||
{ tty = 8;
|
{ tty = 8;
|
||||||
theme = pkgs.fetchurl {
|
theme = pkgs.fetchurl {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue