Loading nixos/modules/programs/htop.nix +1 −1 Original line number Diff line number Diff line Loading @@ -20,7 +20,7 @@ in package = mkOption { type = types.package; default = pkgs.htop; defaultText = "pkgs.htop"; defaultText = lib.literalExpression "pkgs.htop"; description = lib.mdDoc '' The htop package that should be used. ''; Loading nixos/modules/programs/weylus.nix +1 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ in package = mkOption { type = package; default = pkgs.weylus; defaultText = "pkgs.weylus"; defaultText = lib.literalExpression "pkgs.weylus"; description = lib.mdDoc "Weylus package to install."; }; }; Loading nixos/modules/services/audio/liquidsoap.nix +7 −5 Original line number Diff line number Diff line Loading @@ -38,11 +38,13 @@ in default = {}; example = { example = literalExpression '' { myStream1 = "/etc/liquidsoap/myStream1.liq"; myStream2 = literalExpression "./myStream2.liq"; myStream2 = ./myStream2.liq; myStream3 = "out(playlist(\"/srv/music/\"))"; }; } ''; type = types.attrsOf (types.either types.path types.str); }; Loading nixos/modules/services/databases/clickhouse.nix +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ with lib; package = mkOption { type = types.package; default = pkgs.clickhouse; defaultText = "pkgs.clickhouse"; defaultText = lib.literalExpression "pkgs.clickhouse"; description = lib.mdDoc '' ClickHouse package to use. ''; Loading nixos/modules/services/databases/mysql.nix +6 −4 Original line number Diff line number Diff line Loading @@ -160,10 +160,12 @@ in List of database names and their initial schemas that should be used to create databases on the first startup of MySQL. The schema attribute is optional: If not specified, an empty database is created. ''; example = [ { name = "foodatabase"; schema = literalExpression "./foodatabase.sql"; } example = literalExpression '' [ { name = "foodatabase"; schema = ./foodatabase.sql; } { name = "bardatabase"; } ]; ] ''; }; initialScript = mkOption { Loading Loading
nixos/modules/programs/htop.nix +1 −1 Original line number Diff line number Diff line Loading @@ -20,7 +20,7 @@ in package = mkOption { type = types.package; default = pkgs.htop; defaultText = "pkgs.htop"; defaultText = lib.literalExpression "pkgs.htop"; description = lib.mdDoc '' The htop package that should be used. ''; Loading
nixos/modules/programs/weylus.nix +1 −1 Original line number Diff line number Diff line Loading @@ -29,7 +29,7 @@ in package = mkOption { type = package; default = pkgs.weylus; defaultText = "pkgs.weylus"; defaultText = lib.literalExpression "pkgs.weylus"; description = lib.mdDoc "Weylus package to install."; }; }; Loading
nixos/modules/services/audio/liquidsoap.nix +7 −5 Original line number Diff line number Diff line Loading @@ -38,11 +38,13 @@ in default = {}; example = { example = literalExpression '' { myStream1 = "/etc/liquidsoap/myStream1.liq"; myStream2 = literalExpression "./myStream2.liq"; myStream2 = ./myStream2.liq; myStream3 = "out(playlist(\"/srv/music/\"))"; }; } ''; type = types.attrsOf (types.either types.path types.str); }; Loading
nixos/modules/services/databases/clickhouse.nix +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ with lib; package = mkOption { type = types.package; default = pkgs.clickhouse; defaultText = "pkgs.clickhouse"; defaultText = lib.literalExpression "pkgs.clickhouse"; description = lib.mdDoc '' ClickHouse package to use. ''; Loading
nixos/modules/services/databases/mysql.nix +6 −4 Original line number Diff line number Diff line Loading @@ -160,10 +160,12 @@ in List of database names and their initial schemas that should be used to create databases on the first startup of MySQL. The schema attribute is optional: If not specified, an empty database is created. ''; example = [ { name = "foodatabase"; schema = literalExpression "./foodatabase.sql"; } example = literalExpression '' [ { name = "foodatabase"; schema = ./foodatabase.sql; } { name = "bardatabase"; } ]; ] ''; }; initialScript = mkOption { Loading