From c89e1ec6300185162f1838eda8622f5654e5875d Mon Sep 17 00:00:00 2001 From: wxlyyy <1556588440@qq.com> Date: Thu, 22 Jan 2026 20:06:45 +0800 Subject: [PATCH] update documentation url --- nix/home-module.nix | 2 +- nix/nixos-module.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/home-module.nix b/nix/home-module.nix index 7cf183edb..423489586 100644 --- a/nix/home-module.nix +++ b/nix/home-module.nix @@ -185,7 +185,7 @@ in systemd.user.services.noctalia-shell = lib.mkIf cfg.systemd.enable { Unit = { Description = "Noctalia Shell - Wayland desktop shell"; - Documentation = "https://docs.noctalia.dev/docs"; + Documentation = "https://docs.noctalia.dev"; PartOf = [ config.wayland.systemd.target ]; After = [ config.wayland.systemd.target ]; X-Restart-Triggers = diff --git a/nix/nixos-module.nix b/nix/nixos-module.nix index 9148fc46a..2f6c84cdb 100644 --- a/nix/nixos-module.nix +++ b/nix/nixos-module.nix @@ -26,7 +26,7 @@ in config = lib.mkIf cfg.enable { systemd.user.services.noctalia-shell = { description = "Noctalia Shell - Wayland desktop shell"; - documentation = [ "https://docs.noctalia.dev/docs" ]; + documentation = [ "https://docs.noctalia.dev" ]; after = [ cfg.target ]; partOf = [ cfg.target ]; wantedBy = [ cfg.target ];