summaryrefslogtreecommitdiffstats
path: root/makefu/3modules/server-config.nix
blob: 846642580f424679ca565df11f804a75c5dbe19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
	};
}