summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/ttys
diff options
context:
space:
mode:
authorstuebinm <stuebinm@disroot.org>2024-04-13 14:54:15 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2024-04-13 10:07:35 -0700
commit6afb255d976f85f3359e4929abd6f5149c323a02 (patch)
treeced23a118ee0852174d31005acd16f04cad3a781 /nixos/modules/services/ttys
parent1dd996e59a5e67694b7a252aacba71a88d51b41e (diff)
nixos: remove all uses of lib.mdDoc
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
Diffstat (limited to 'nixos/modules/services/ttys')
-rw-r--r--nixos/modules/services/ttys/getty.nix12
-rw-r--r--nixos/modules/services/ttys/gpm.nix4
-rw-r--r--nixos/modules/services/ttys/kmscon.nix16
3 files changed, 16 insertions, 16 deletions
diff --git a/nixos/modules/services/ttys/getty.nix b/nixos/modules/services/ttys/getty.nix
index 22ae9c27e5bc..011016dd5fd1 100644
--- a/nixos/modules/services/ttys/getty.nix
+++ b/nixos/modules/services/ttys/getty.nix
@@ -34,7 +34,7 @@ in
autologinUser = mkOption {
type = types.nullOr types.str;
default = null;
- description = lib.mdDoc ''
+ description = ''
Username of the account that will be automatically logged in at the console.
If unspecified, a login prompt is shown as usual.
'';
@@ -44,7 +44,7 @@ in
type = types.path;
default = "${pkgs.shadow}/bin/login";
defaultText = literalExpression ''"''${pkgs.shadow}/bin/login"'';
- description = lib.mdDoc ''
+ description = ''
Path to the login binary executed by agetty.
'';
};
@@ -52,7 +52,7 @@ in
loginOptions = mkOption {
type = types.nullOr types.str;
default = null;
- description = lib.mdDoc ''
+ description = ''
Template for arguments to be passed to
{manpage}`login(1)`.
@@ -67,7 +67,7 @@ in
extraArgs = mkOption {
type = types.listOf types.str;
default = [ ];
- description = lib.mdDoc ''
+ description = ''
Additional arguments passed to agetty.
'';
example = [ "--nohostname" ];
@@ -75,7 +75,7 @@ in
greetingLine = mkOption {
type = types.str;
- description = lib.mdDoc ''
+ description = ''
Welcome line printed by agetty.
The default shows current NixOS version label, machine type and tty.
'';
@@ -84,7 +84,7 @@ in
helpLine = mkOption {
type = types.lines;
default = "";
- description = lib.mdDoc ''
+ description = ''
Help line printed by agetty below the welcome line.
Used by the installation CD to give some hints on
how to proceed.
diff --git a/nixos/modules/services/ttys/gpm.nix b/nixos/modules/services/ttys/gpm.nix
index 378f6b17732f..308a6d3643a6 100644
--- a/nixos/modules/services/ttys/gpm.nix
+++ b/nixos/modules/services/ttys/gpm.nix
@@ -19,7 +19,7 @@ in
enable = mkOption {
type = types.bool;
default = false;
- description = lib.mdDoc ''
+ description = ''
Whether to enable GPM, the General Purpose Mouse daemon,
which enables mouse support in virtual consoles.
'';
@@ -28,7 +28,7 @@ in
protocol = mkOption {
type = types.str;
default = "ps/2";
- description = lib.mdDoc "Mouse protocol to use.";
+ description = "Mouse protocol to use.";
};
};
diff --git a/nixos/modules/services/ttys/kmscon.nix b/nixos/modules/services/ttys/kmscon.nix
index 0a12ef48d084..74314e1e76e4 100644
--- a/nixos/modules/services/ttys/kmscon.nix
+++ b/nixos/modules/services/ttys/kmscon.nix
@@ -11,7 +11,7 @@ in {
options = {
services.kmscon = {
enable = mkOption {
- description = lib.mdDoc ''
+ description = ''
Use kmscon as the virtual console instead of gettys.
kmscon is a kms/dri-based userspace virtual terminal implementation.
It supports a richer feature set than the standard linux console VT,
@@ -23,33 +23,33 @@ in {
};
hwRender = mkOption {
- description = lib.mdDoc "Whether to use 3D hardware acceleration to render the console.";
+ description = "Whether to use 3D hardware acceleration to render the console.";
type = types.bool;
default = false;
};
fonts = mkOption {
- description = lib.mdDoc "Fonts used by kmscon, in order of priority.";
+ description = "Fonts used by kmscon, in order of priority.";
default = null;
example = lib.literalExpression ''[ { name = "Source Code Pro"; package = pkgs.source-code-pro; } ]'';
type = with types;
let fontType = submodule {
options = {
- name = mkOption { type = str; description = lib.mdDoc "Font name, as used by fontconfig."; };
- package = mkOption { type = package; description = lib.mdDoc "Package providing the font."; };
+ name = mkOption { type = str; description = "Font name, as used by fontconfig."; };
+ package = mkOption { type = package; description = "Package providing the font."; };
};
}; in nullOr (nonEmptyListOf fontType);
};
extraConfig = mkOption {
- description = lib.mdDoc "Extra contents of the kmscon.conf file.";
+ description = "Extra contents of the kmscon.conf file.";
type = types.lines;
default = "";
example = "font-size=14";
};
extraOptions = mkOption {
- description = lib.mdDoc "Extra flags to pass to kmscon.";
+ description = "Extra flags to pass to kmscon.";
type = types.separatedString " ";
default = "";
example = "--term xterm-256color";
@@ -58,7 +58,7 @@ in {
autologinUser = mkOption {
type = types.nullOr types.str;
default = null;
- description = lib.mdDoc ''
+ description = ''
Username of the account that will be automatically logged in at the console.
If unspecified, a login prompt is shown as usual.
'';