aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorMichaƂ <[email protected]>2023-06-07 20:18:39 +0200
committerGitHub <[email protected]>2023-06-07 20:18:39 +0200
commit7f753cab9a8044651753524da1725d4fbe2555a7 (patch)
treeb3b5bb73811ac196cd6cbaa7cd61f58c0fedbb4e /nix
parent4afeedbd567ca2114f682f14a6de26d4a8188878 (diff)
downloadHyprland-7f753cab9a8044651753524da1725d4fbe2555a7.tar.gz
Hyprland-7f753cab9a8044651753524da1725d4fbe2555a7.zip
chore: fix typos (#2463)
Some typos when spelling Hyprland
Diffstat (limited to 'nix')
-rw-r--r--nix/hm-module.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/hm-module.nix b/nix/hm-module.nix
index db8e544e..505ce900 100644
--- a/nix/hm-module.nix
+++ b/nix/hm-module.nix
@@ -55,7 +55,7 @@ in {
type = with lib.types; listOf (either package path);
default = [];
description = lib.mdDoc ''
- List of hyprlad plugins to use. Can either be packages or
+ List of Hyprland plugins to use. Can either be packages or
absolute plugin paths.
'';
};
@@ -65,7 +65,7 @@ in {
default = pkgs.stdenv.isLinux;
description = lib.mdDoc ''
Whether to enable {file}`hyprland-session.target` on
- hyprland startup. This links to {file}`graphical-session.target`.
+ Hyprland startup. This links to {file}`graphical-session.target`.
Some important environment variables will be imported to systemd
and dbus user environment before reaching the target, including
- {env}`DISPLAY`
@@ -119,7 +119,7 @@ in {
warnings =
if (cfg.systemdIntegration || cfg.plugins != []) && cfg.extraConfig == null then
[ ''You have enabled hyprland.systemdIntegration or listed plugins in hyprland.plugins.
- Your hyprland config will be linked by home manager.
+ Your Hyprland config will be linked by home manager.
Set hyprland.extraConfig or unset hyprland.systemdIntegration and hyprland.plugins to remove this warning.'' ]
else [];
@@ -159,7 +159,7 @@ in {
systemd.user.targets.hyprland-session = lib.mkIf cfg.systemdIntegration {
Unit = {
- Description = "hyprland compositor session";
+ Description = "Hyprland compositor session";
Documentation = ["man:systemd.special(7)"];
BindsTo = ["graphical-session.target"];
Wants = ["graphical-session-pre.target"];