about summary refs log tree commit diff
path: root/nixos/modules/services/system/cloud-init.nix
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2023-04-30 14:59:16 +0200
committerzimbatm <zimbatm@zimbatm.com>2023-04-30 14:59:16 +0200
commit4a1fd4afe03fe8ed4417df608ae86e6c3a4b3a6f (patch)
treeeb9985d64a572205c93873b40c94a1ae658d0404 /nixos/modules/services/system/cloud-init.nix
parentde8b1cf647dcde12f59ffde2d1a17e003cf080b0 (diff)
cloud-init module: remove superfluous lib. prefixes
Diffstat (limited to 'nixos/modules/services/system/cloud-init.nix')
-rw-r--r--nixos/modules/services/system/cloud-init.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/system/cloud-init.nix b/nixos/modules/services/system/cloud-init.nix
index 788e3fd00ce79..c78bc9b91ee28 100644
--- a/nixos/modules/services/system/cloud-init.nix
+++ b/nixos/modules/services/system/cloud-init.nix
@@ -23,7 +23,7 @@ in
       enable = mkOption {
         type = types.bool;
         default = false;
-        description = lib.mdDoc ''
+        description = mdDoc ''
           Enable the cloud-init service. This services reads
           configuration metadata in a cloud environment and configures
           the machine according to this metadata.
@@ -42,7 +42,7 @@ in
       btrfs.enable = mkOption {
         type = types.bool;
         default = false;
-        description = lib.mdDoc ''
+        description = mdDoc ''
           Allow the cloud-init service to operate `btrfs` filesystem.
         '';
       };
@@ -50,7 +50,7 @@ in
       ext4.enable = mkOption {
         type = types.bool;
         default = true;
-        description = lib.mdDoc ''
+        description = mdDoc ''
           Allow the cloud-init service to operate `ext4` filesystem.
         '';
       };
@@ -58,7 +58,7 @@ in
       network.enable = mkOption {
         type = types.bool;
         default = false;
-        description = lib.mdDoc ''
+        description = mdDoc ''
           Allow the cloud-init service to configure network interfaces
           through systemd-networkd.
         '';
@@ -113,7 +113,7 @@ in
            - final-message
            - power-state-change
         '';
-        description = lib.mdDoc "cloud-init configuration.";
+        description = mdDoc "cloud-init configuration.";
       };
 
     };