2016-12-22 13:12:24 +00:00
|
|
|
{config, lib, pkgs, ... }:
|
|
|
|
|
2017-10-03 13:44:13 +00:00
|
|
|
with lib;{
|
2016-12-22 13:12:24 +00:00
|
|
|
options.makefu.server.primary-itf = lib.mkOption {
|
2017-10-03 13:44:13 +00:00
|
|
|
type = types.str;
|
|
|
|
description = "Primary interface of the server";
|
|
|
|
};
|
2017-05-12 09:35:35 +00:00
|
|
|
options.makefu.gui.user = lib.mkOption {
|
2017-10-03 13:44:13 +00:00
|
|
|
type = types.str;
|
|
|
|
description = "GUI user";
|
2017-05-12 09:35:35 +00:00
|
|
|
default = config.krebs.build.user.name;
|
2017-10-03 13:44:13 +00:00
|
|
|
};
|
2016-12-22 13:12:24 +00:00
|
|
|
}
|
|
|
|
|