5eeb277564
The outputs available are a characteristic of the device, not the example.
19 lines
320 B
Nix
19 lines
320 B
Nix
{ config, pkgs, lib, ... } :
|
|
let
|
|
inherit (pkgs.pseudofile) dir symlink;
|
|
in {
|
|
imports = [
|
|
../../modules/outputs/ext4fs.nix
|
|
];
|
|
config = {
|
|
rootfsType = "ext4";
|
|
filesystem = dir {
|
|
hello = {
|
|
type = "f";
|
|
uid = 7;
|
|
gid = 24;
|
|
file = "hello world";
|
|
};
|
|
};
|
|
};
|
|
}
|