17 lines
301 B
Nix
17 lines
301 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./disk-id
|
|
./garage
|
|
./machine-id
|
|
./root-password
|
|
./sshd
|
|
./state-version
|
|
./user-password
|
|
];
|
|
|
|
options.vars.unattended = lib.mkEnableOption "Whether to default to generating values unattended, rather than prompting for desired values.";
|
|
}
|