diff options
author | makefu <github@syntax-fehler.de> | 2017-10-03 15:44:13 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-10-03 15:44:13 +0200 |
commit | 52f9105027a7c2d70145d7d2db69452e148b2158 (patch) | |
tree | b6dcc3667eeaf1513a06c4c12403e759d8afd868 /makefu/3modules | |
parent | d5cd048bc3b9d541e93d7e2c4ac499b4c6fc759b (diff) |
ma server-config: retab
Diffstat (limited to 'makefu/3modules')
-rw-r--r-- | makefu/3modules/server-config.nix | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/makefu/3modules/server-config.nix b/makefu/3modules/server-config.nix index 846642580..9cac59205 100644 --- a/makefu/3modules/server-config.nix +++ b/makefu/3modules/server-config.nix @@ -1,15 +1,14 @@ {config, lib, pkgs, ... }: -with import <stockholm/lib>; -{ +with lib;{ options.makefu.server.primary-itf = lib.mkOption { - type = types.str; - description = "Primary interface of the server"; - }; + type = types.str; + description = "Primary interface of the server"; + }; options.makefu.gui.user = lib.mkOption { - type = types.str; - description = "GUI user"; + type = types.str; + description = "GUI user"; default = config.krebs.build.user.name; - }; + }; } |