nixos/modules/base/fireproof.nix

20 lines
485 B
Nix
Raw Permalink 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";
};
2025-12-27 00:32:56 +01:00
hardware = {
battery = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Enable battery support (UPower, battery widget, etc.)";
};
};
2025-12-13 21:41:52 +01:00
};
}