mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-10-15 19:37:19 +02:00
treewide: remove 'with lib;'
This commit is contained in:
parent
cf54323dc7
commit
78ae241387
53 changed files with 245 additions and 245 deletions
|
@ -5,11 +5,11 @@ let
|
|||
inherit (config.networking) domain;
|
||||
in
|
||||
{
|
||||
options.my.services.promtail = with lib; {
|
||||
enable = mkEnableOption "promtail log forwarding";
|
||||
options.my.services.promtail = {
|
||||
enable = lib.mkEnableOption "promtail log forwarding";
|
||||
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
port = lib.mkOption {
|
||||
type = lib.types.port;
|
||||
default = 9081;
|
||||
example = 3002;
|
||||
description = "Internal port";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue