about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorh7x4 <h7x4@nani.wtf>2023-12-04 23:12:25 +0100
committerh7x4 <h7x4@nani.wtf>2023-12-04 23:12:25 +0100
commite6a98c8254f4742a7ee102fd55f85387359832b6 (patch)
tree52253707ce743f1be0280a19669684c8661a54d3 /nixos/modules
parent8434711e6abfc3240b95045ef7d796ba5eedf0c7 (diff)
downloadnixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar.gz
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar.bz2
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar.lz
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar.xz
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.tar.zst
nixlib-e6a98c8254f4742a7ee102fd55f85387359832b6.zip
nixos/mattermost: fix `mkPackageOption` default name
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/web-apps/mattermost.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/mattermost.nix b/nixos/modules/services/web-apps/mattermost.nix
index f19465eeb59a..503559432374 100644
--- a/nixos/modules/services/web-apps/mattermost.nix
+++ b/nixos/modules/services/web-apps/mattermost.nix
@@ -102,7 +102,7 @@ in
     services.mattermost = {
       enable = mkEnableOption (lib.mdDoc "Mattermost chat server");
 
-      package = mkPackageOption pkgs "mattermostl" { };
+      package = mkPackageOption pkgs "mattermost" { };
 
       statePath = mkOption {
         type = types.str;