16 lines
329 B
Nix
16 lines
329 B
Nix
{config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
{
|
|
options.makefu.server.primary-itf = lib.mkOption {
|
|
type = types.str;
|
|
description = "Primary interface of the server";
|
|
};
|
|
options.makefu.gui.user = lib.mkOption {
|
|
type = types.str;
|
|
description = "GUI user";
|
|
default = config.krebs.build.user.name;
|
|
};
|
|
}
|
|
|