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