mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Fixing the system tarball for the sheevaplug
This commit is contained in:
parent
1568b6858d
commit
8881d1a920
1 changed files with 3 additions and 4 deletions
|
@ -42,7 +42,6 @@ in
|
|||
require =
|
||||
[
|
||||
./system-tarball.nix
|
||||
../../hardware/network/rt73.nix
|
||||
];
|
||||
|
||||
# Disable some other stuff we don't need.
|
||||
|
@ -87,7 +86,6 @@ in
|
|||
pkgs.bvi # binary editor
|
||||
pkgs.joe
|
||||
];
|
||||
*/
|
||||
|
||||
boot.loader.grub.enable = false;
|
||||
boot.loader.generationsDir.enable = false;
|
||||
|
@ -134,8 +132,6 @@ in
|
|||
];
|
||||
|
||||
services.mingetty = {
|
||||
ttys = [ "ttyS0" ];
|
||||
|
||||
# Some more help text.
|
||||
helpLine = ''
|
||||
Log in as "root" with an empty password. ${
|
||||
|
@ -177,6 +173,9 @@ in
|
|||
services.ttyBackgrounds.enable = false;
|
||||
jobs.openssh.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
|
||||
|
||||
# cpufrequtils fails to build on non-pc
|
||||
powerManagement.enable = false;
|
||||
|
||||
nixpkgs.config = {
|
||||
platform = pkgs.platforms.sheevaplug;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue