11 lines
190 B
Nix
11 lines
190 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";
|
||
|
};
|
||
|
}
|
||
|
|