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,10 +5,10 @@ let
|
|||
inherit (config.networking) domain;
|
||||
in
|
||||
{
|
||||
options.my.services.passworts = with lib; {
|
||||
enable = mkEnableOption "Passwords Server";
|
||||
port = mkOption {
|
||||
type = types.port;
|
||||
options.my.services.passworts = {
|
||||
enable = lib.mkEnableOption "Passwords Server";
|
||||
port = lib.mkOption {
|
||||
type = lib.types.port;
|
||||
default = 5010;
|
||||
example = 8080;
|
||||
description = "Internal port for webui";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue