2023-08-09 21:27:37 +00:00
|
|
|
## Base options
|
|
|
|
## ============
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2022-09-26 10:46:09 +00:00
|
|
|
let
|
2024-06-30 15:58:29 +00:00
|
|
|
inherit (lib) mkOption types;
|
2022-09-26 17:27:43 +00:00
|
|
|
inherit (pkgs.pseudofile) dir symlink;
|
|
|
|
|
2023-07-14 19:22:29 +00:00
|
|
|
type_service = pkgs.liminix.lib.types.service;
|
2022-09-26 10:46:09 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2022-09-25 10:22:15 +00:00
|
|
|
options = {
|
2022-09-27 15:17:55 +00:00
|
|
|
defaultProfile = {
|
|
|
|
packages = mkOption {
|
|
|
|
type = types.listOf types.package;
|
2023-08-12 19:11:43 +00:00
|
|
|
description = ''
|
|
|
|
List of packages which are available in a login shell. (This
|
|
|
|
is analogous to systemPackages in NixOS, but we don't symlink into
|
|
|
|
/run/current-system, we just add the paths in /etc/profile
|
|
|
|
'';
|
2022-09-27 15:17:55 +00:00
|
|
|
};
|
2022-09-25 10:22:15 +00:00
|
|
|
};
|
|
|
|
services = mkOption {
|
2022-09-26 10:46:09 +00:00
|
|
|
type = types.attrsOf type_service;
|
2022-09-25 10:22:15 +00:00
|
|
|
};
|
2024-03-16 20:23:18 +00:00
|
|
|
system.callService = mkOption {
|
|
|
|
type = types.functionTo (types.functionTo types.anything);
|
|
|
|
};
|
|
|
|
|
2023-08-12 19:11:43 +00:00
|
|
|
filesystem = mkOption {
|
|
|
|
type = types.anything;
|
|
|
|
description = ''
|
|
|
|
Skeleton filesystem, represented as nested attrset. Consult the
|
|
|
|
source code if you need to add to this
|
|
|
|
'';
|
|
|
|
# internal = true; # probably a good case to make this internal
|
|
|
|
};
|
2024-06-30 15:58:29 +00:00
|
|
|
rootfsType = mkOption {
|
2023-04-10 18:59:09 +00:00
|
|
|
default = "squashfs";
|
2023-11-06 21:52:31 +00:00
|
|
|
type = types.enum [
|
2024-01-07 16:43:43 +00:00
|
|
|
"btrfs"
|
2023-11-06 21:52:31 +00:00
|
|
|
"ext4"
|
|
|
|
"jffs2"
|
|
|
|
"squashfs"
|
|
|
|
"ubifs"
|
|
|
|
];
|
2023-04-10 18:59:09 +00:00
|
|
|
};
|
2024-06-30 15:58:29 +00:00
|
|
|
rootOptions = mkOption {
|
2024-01-08 18:54:49 +00:00
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
|
2023-02-18 15:13:19 +00:00
|
|
|
boot = {
|
|
|
|
commandLine = mkOption {
|
|
|
|
type = types.listOf types.nonEmptyStr;
|
2024-06-30 15:58:29 +00:00
|
|
|
default = [ ];
|
2023-08-12 19:11:43 +00:00
|
|
|
description = "Kernel command line";
|
2023-02-18 15:13:19 +00:00
|
|
|
};
|
2024-02-17 01:16:57 +00:00
|
|
|
commandLineDtbNode = mkOption {
|
2024-06-30 15:58:29 +00:00
|
|
|
type = types.enum [
|
|
|
|
"bootargs"
|
|
|
|
"bootargs-override"
|
|
|
|
];
|
2024-02-17 01:16:57 +00:00
|
|
|
default = "bootargs";
|
|
|
|
description = "Kernel command line's devicetree node";
|
|
|
|
};
|
2024-02-19 01:48:15 +00:00
|
|
|
imageType = mkOption {
|
2024-06-30 15:58:29 +00:00
|
|
|
type = types.enum [
|
|
|
|
"primary"
|
|
|
|
"secondary"
|
|
|
|
];
|
2024-02-19 01:48:15 +00:00
|
|
|
default = "primary";
|
|
|
|
};
|
2023-10-08 21:35:30 +00:00
|
|
|
imageFormat = mkOption {
|
2024-06-30 15:58:29 +00:00
|
|
|
type = types.enum [
|
|
|
|
"fit"
|
|
|
|
"uimage"
|
|
|
|
];
|
2023-10-08 21:35:30 +00:00
|
|
|
default = "uimage";
|
|
|
|
};
|
2023-03-18 14:45:51 +00:00
|
|
|
tftp = {
|
2023-08-12 19:11:43 +00:00
|
|
|
loadAddress = mkOption {
|
2023-11-12 18:37:33 +00:00
|
|
|
type = types.ints.unsigned;
|
2023-08-12 19:11:43 +00:00
|
|
|
description = ''
|
|
|
|
RAM address at which to load data when transferring via
|
|
|
|
TFTP. This is not the address of the flash storage,
|
|
|
|
nor the kernel load address: it should be set to some part
|
|
|
|
of RAM that's not used for anything else and suitable for
|
|
|
|
temporary storage.
|
|
|
|
'';
|
|
|
|
};
|
2023-03-18 14:45:51 +00:00
|
|
|
# These names match the uboot environment variables. I reserve
|
|
|
|
# the right to change them if I think of better ones.
|
2024-06-30 15:58:29 +00:00
|
|
|
ipaddr = mkOption {
|
2023-08-12 19:11:43 +00:00
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
Our IP address to use when creating scripts to
|
|
|
|
boot or flash from U-Boot. Not relevant in normal operation
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
serverip = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
IP address of the TFTP server. Not relevant in normal operation
|
|
|
|
'';
|
|
|
|
};
|
2023-03-18 14:45:51 +00:00
|
|
|
};
|
2023-02-10 18:20:01 +00:00
|
|
|
};
|
2022-09-25 10:22:15 +00:00
|
|
|
};
|
2022-09-26 19:45:00 +00:00
|
|
|
config = {
|
2025-02-10 21:55:08 +00:00
|
|
|
defaultProfile.packages = with pkgs; [
|
|
|
|
s6
|
|
|
|
s6-init-bin
|
|
|
|
execline
|
|
|
|
s6-linux-init
|
|
|
|
s6-rc
|
|
|
|
];
|
2022-09-28 20:31:15 +00:00
|
|
|
|
2022-10-06 23:21:04 +00:00
|
|
|
boot.commandLine = [
|
2023-09-20 16:27:04 +00:00
|
|
|
"panic=10 oops=panic init=/bin/init loglevel=8"
|
2023-04-26 21:16:15 +00:00
|
|
|
"root=${config.hardware.rootDevice}"
|
2023-04-10 18:59:09 +00:00
|
|
|
"rootfstype=${config.rootfsType}"
|
2022-10-15 15:11:40 +00:00
|
|
|
"fw_devlink=off"
|
2024-01-08 18:54:49 +00:00
|
|
|
] ++ lib.optional (config.rootOptions != null) "rootflags=${config.rootOptions}";
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
system.callService =
|
|
|
|
path: parameters:
|
2024-03-16 20:23:18 +00:00
|
|
|
let
|
2025-02-10 21:55:08 +00:00
|
|
|
typeChecked =
|
|
|
|
caller: type: value:
|
2024-03-16 20:23:18 +00:00
|
|
|
let
|
|
|
|
inherit (lib) types mergeDefinitions;
|
2025-02-10 21:55:08 +00:00
|
|
|
defs = [
|
|
|
|
{
|
|
|
|
file = caller;
|
|
|
|
inherit value;
|
|
|
|
}
|
|
|
|
];
|
2024-03-16 20:23:18 +00:00
|
|
|
type' = types.submodule { options = type; };
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
(mergeDefinitions [ ] type' defs).mergedValue;
|
|
|
|
cp = lib.callPackageWith (pkgs // { svc = config.system.service; });
|
|
|
|
pkg = cp path { };
|
|
|
|
checkTypes = t: p: typeChecked (builtins.toString path) t p;
|
|
|
|
in
|
|
|
|
{
|
2024-03-16 20:23:18 +00:00
|
|
|
inherit parameters;
|
2025-02-10 21:55:08 +00:00
|
|
|
build =
|
|
|
|
{
|
|
|
|
dependencies ? [ ],
|
|
|
|
...
|
|
|
|
}@args:
|
2024-03-16 20:23:18 +00:00
|
|
|
let
|
2025-02-10 21:55:08 +00:00
|
|
|
s = pkg (checkTypes parameters (builtins.removeAttrs args [ "dependencies" ]));
|
|
|
|
in
|
|
|
|
s.overrideAttrs (o: {
|
2024-06-12 11:58:57 +00:00
|
|
|
dependencies = dependencies ++ o.dependencies;
|
2024-03-16 20:23:18 +00:00
|
|
|
buildInputs = dependencies ++ o.buildInputs;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-09-28 20:31:15 +00:00
|
|
|
users.root = {
|
2025-02-10 21:55:08 +00:00
|
|
|
uid = 0;
|
|
|
|
gid = 0;
|
|
|
|
gecos = "Root of all evaluation";
|
2023-03-18 14:46:50 +00:00
|
|
|
dir = "/home/root/";
|
2023-03-04 00:24:48 +00:00
|
|
|
passwd = lib.mkDefault "";
|
2022-09-28 20:31:15 +00:00
|
|
|
shell = "/bin/sh";
|
|
|
|
};
|
2023-02-25 20:33:18 +00:00
|
|
|
groups = {
|
|
|
|
root = {
|
2025-02-10 21:55:08 +00:00
|
|
|
gid = 0;
|
|
|
|
usernames = [ "root" ];
|
2023-02-25 20:33:18 +00:00
|
|
|
};
|
2023-02-25 22:53:06 +00:00
|
|
|
system = {
|
2025-02-10 21:55:08 +00:00
|
|
|
gid = 1;
|
|
|
|
usernames = [ "root" ];
|
2023-02-25 22:53:06 +00:00
|
|
|
};
|
2022-09-28 20:31:15 +00:00
|
|
|
};
|
|
|
|
|
2022-09-27 15:33:58 +00:00
|
|
|
filesystem = dir {
|
2022-09-27 13:06:07 +00:00
|
|
|
dev =
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
node = type: major: minor: mode: {
|
|
|
|
inherit
|
|
|
|
type
|
|
|
|
major
|
|
|
|
minor
|
|
|
|
mode
|
|
|
|
;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
dir {
|
|
|
|
null = node "c" "1" "3" "0666";
|
|
|
|
zero = node "c" "1" "5" "0666";
|
|
|
|
tty = node "c" "5" "0" "0666";
|
2022-09-27 13:06:07 +00:00
|
|
|
console = node "c" "5" "1" "0600";
|
2025-02-10 21:55:08 +00:00
|
|
|
pts = dir { };
|
|
|
|
};
|
|
|
|
etc =
|
|
|
|
let
|
|
|
|
profile = symlink (
|
|
|
|
pkgs.writeScript ".profile" ''
|
|
|
|
PATH=${lib.makeBinPath config.defaultProfile.packages}:/bin
|
|
|
|
export PATH
|
|
|
|
''
|
|
|
|
);
|
|
|
|
in
|
|
|
|
dir {
|
|
|
|
inherit profile;
|
|
|
|
ashrc = profile;
|
2022-09-27 13:06:07 +00:00
|
|
|
};
|
2023-05-21 16:08:32 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
proc = dir { };
|
|
|
|
run = dir { };
|
|
|
|
sys = dir { };
|
|
|
|
tmp = dir { };
|
2022-09-26 19:45:00 +00:00
|
|
|
};
|
|
|
|
};
|
2022-09-25 10:22:15 +00:00
|
|
|
}
|