12 lines
171 B
Nix
12 lines
171 B
Nix
|
|
{ lib, ... }:
|
||
|
|
{
|
||
|
|
options.cos = {
|
||
|
|
username = lib.mkOption {
|
||
|
|
type = lib.types.str;
|
||
|
|
};
|
||
|
|
hostName = lib.mkOption {
|
||
|
|
type = lib.types.str;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|