summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorlinsui <linsui555@gmail.com>2023-09-13 14:19:04 +0800
committerlinsui <linsui555@gmail.com>2023-09-13 14:48:24 +0800
commit840f02aa54f04c1f8d9794f22a105e6d8aa87d2e (patch)
treefdba5d484893387804cd2e15edb41a0e4981e411 /nixos/modules
parent5d2b2523a0442fd19294359b31b8535696c32984 (diff)
downloadnixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar.gz
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar.bz2
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar.lz
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar.xz
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.tar.zst
nixpkgs-840f02aa54f04c1f8d9794f22a105e6d8aa87d2e.zip
nixos/yazi: add to module-list.nix
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/programs/yazi.nix6
2 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 6479fd6e7df..2eb5f8f157b 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -279,6 +279,7 @@
   ./programs/xss-lock.nix
   ./programs/xwayland.nix
   ./programs/yabar.nix
+  ./programs/yazi.nix
   ./programs/zmap.nix
   ./programs/zsh/oh-my-zsh.nix
   ./programs/zsh/zsh-autoenv.nix
diff --git a/nixos/modules/programs/yazi.nix b/nixos/modules/programs/yazi.nix
index 3416bca0667..973f5c0122c 100644
--- a/nixos/modules/programs/yazi.nix
+++ b/nixos/modules/programs/yazi.nix
@@ -45,5 +45,9 @@ in
         names);
     };
   };
-  meta.maintainers = with lib.maintainers; [ linsui ];
+  meta = {
+    maintainers = with lib.maintainers; [ linsui ];
+    # The version of the package is used in the doc.
+    buildDocsInSandbox = false;
+  };
 }