There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
21 lines
359 B
Nix
21 lines
359 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
inherit (pkgs.pseudofile) dir;
|
|
in
|
|
{
|
|
imports = [
|
|
../../vanilla-configuration.nix
|
|
../../modules/outputs/squashfs.nix
|
|
../../modules/outputs/jffs2.nix
|
|
];
|
|
config.rootfsType = "jffs2";
|
|
config.filesystem = dir {
|
|
hello = {
|
|
type = "f";
|
|
uid = 7;
|
|
gid = 24;
|
|
file = "hello world";
|
|
};
|
|
};
|
|
}
|