mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
13 lines
286 B
Nix
13 lines
286 B
Nix
|
|
{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";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|