nixos/modules/base/fireproof.nix

13 lines
286 B
Nix
Raw Normal View History

2025-12-13 21:41:52 +01:00
{lib, ...}: {
options.fireproof = {
hostname = lib.mkOption {
type = lib.types.str;
description = "The hostname of the machine";
};
username = lib.mkOption {
type = lib.types.str;
description = "The primary username for the machine";
};
};
}