2025-02-10 21:55:08 +00:00
|
|
|
{ config, pkgs, ... }:
|
2023-11-06 21:52:31 +00:00
|
|
|
let
|
2024-06-29 21:59:27 +00:00
|
|
|
inherit (pkgs.pseudofile) dir;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2023-11-06 21:52:31 +00:00
|
|
|
imports = [
|
2023-12-10 16:38:53 +00:00
|
|
|
../../modules/outputs/ext4fs.nix
|
2023-11-06 21:52:31 +00:00
|
|
|
];
|
2023-12-10 16:38:53 +00:00
|
|
|
config = {
|
|
|
|
rootfsType = "ext4";
|
|
|
|
filesystem = dir {
|
|
|
|
hello = {
|
|
|
|
type = "f";
|
|
|
|
uid = 7;
|
|
|
|
gid = 24;
|
|
|
|
file = "hello world";
|
|
|
|
};
|
2023-11-06 21:52:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|