add "standard" module, which includes flashimage kexec & jffs2

most systems need most of these, so it makes writing the docs a
lot easier
Daniel Barlow 2023-05-16 20:13:46 +01:00
parent 6870abfe83
commit 15112671d6
7 changed files with 18 additions and 14 deletions

View File

@ -12,13 +12,14 @@ and the services that you want to run on it. Start by copying
``vanilla-configuration.nix`` and adjusting it, or look in the `examples`
directory for some pre-written configurations.
If you want to create a configuration that can be installed on
a hardware device, be sure to include the "flashimage" module.
Your configuration may include modules and probably _should_
include the ``standard`` module unless you understand what it
does and what happens if you leave it out.
.. code-block: nix
imports = [
./modules/flashimage.nix
./modules/standard.nix
]

View File

@ -31,10 +31,8 @@ in rec {
};
imports = [
../modules/tftpboot.nix
../modules/standard.nix
../modules/wlan.nix
../modules/flashimage.nix
../modules/kexecboot.nix
];
hostname = "arhcive";

View File

@ -34,8 +34,7 @@ in rec {
imports = [
../modules/wlan.nix
../modules/tftpboot.nix
../modules/flashimage.nix
../modules/standard.nix
];
hostname = "extneder";

View File

@ -33,9 +33,7 @@ in rec {
imports = [
../modules/wlan.nix
../modules/tftpboot.nix
../modules/flashimage.nix
../modules/jffs2.nix
../modules/standard.nix
];
rootfsType = "jffs2";

10
modules/standard.nix Normal file
View File

@ -0,0 +1,10 @@
{
# "standard" modules that aren't fundamentally required,
# but are probably useful in most common workflows and
# you should have to opt out of instead of into
imports = [
./tftpboot.nix
./kexecboot.nix
./jffs2.nix
];
}

View File

@ -13,8 +13,6 @@ let
in {
imports = [
../../vanilla-configuration.nix
../../modules/squashfs.nix
../../modules/jffs2.nix
];
config = {
services.sshd = longrun {

View File

@ -4,7 +4,7 @@ let
inherit (pkgs.liminix.services) oneshot longrun bundle target;
in rec {
imports = [
./modules/tftpboot.nix
./modules/standard.nix
./modules/wlan.nix
];
services.loopback = config.hardware.networkInterfaces.lo;