summary refs log tree commit diff
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2022-08-15 07:16:25 +0200
committerpennae <82953136+pennae@users.noreply.github.com>2022-08-19 22:40:58 +0200
commit6039648c50c7c0858b5e506c6298773a98e0f066 (patch)
tree5421b3c36609e710c85b43d92dc3b830f6a1385b /nixos/modules/hardware
parent7e7d68a250f75678451cd44f8c3d585bf750461e (diff)
downloadnixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar.gz
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar.bz2
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar.lz
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar.xz
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.tar.zst
nixpkgs-6039648c50c7c0858b5e506c6298773a98e0f066.zip
nixos/*: automatically convert option docs
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/cpu/amd-sev.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/hardware/cpu/amd-sev.nix b/nixos/modules/hardware/cpu/amd-sev.nix
index 32fed2c484d..678b98e5135 100644
--- a/nixos/modules/hardware/cpu/amd-sev.nix
+++ b/nixos/modules/hardware/cpu/amd-sev.nix
@@ -8,17 +8,17 @@ in
     options.hardware.cpu.amd.sev = {
       enable = mkEnableOption "access to the AMD SEV device";
       user = mkOption {
-        description = "Owner to assign to the SEV device.";
+        description = lib.mdDoc "Owner to assign to the SEV device.";
         type = types.str;
         default = "root";
       };
       group = mkOption {
-        description = "Group to assign to the SEV device.";
+        description = lib.mdDoc "Group to assign to the SEV device.";
         type = types.str;
         default = defaultGroup;
       };
       mode = mkOption {
-        description = "Mode to set for the SEV device.";
+        description = lib.mdDoc "Mode to set for the SEV device.";
         type = types.str;
         default = "0660";
       };